[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [FORGE] How to find when a package was released
From: |
Carnë Draug |
Subject: |
Re: [FORGE] How to find when a package was released |
Date: |
Mon, 20 Oct 2014 01:00:08 +0100 |
On 17 October 2014 17:16, JuanPi <address@hidden> wrote:
> I am guilty of not tagging, just because I did not know about tagging :D.
> What would be the hg tag command?
> When one should run it?
> What should the tag be?
> I imagine a command like this executed after the actual release of the package
>
> hg tag -d $(date) release
>
> Please do correct me!
I just follow the Octave core example on this:
## edit NEWS, DESCRIPTION, and configure.ac with new version and release date
$ hg commit -m "maint: release 2.2.2."
$ hg tag "release-2.2.2"
Carnë