Skip to content

Releases: softsense/git-semver

Release v0.0.16

17 May 12:55
4361329
Compare
Choose a tag to compare
disable CGO when building release asset (#15)

Release v0.0.15

17 Apr 07:59
485a66e
Compare
Choose a tag to compare
fix compares of pre-release versions (#13)

Release v0.0.14

20 Mar 20:07
Compare
Choose a tag to compare
fix history cmd

Release v0.0.13

20 Mar 19:37
Compare
Choose a tag to compare
make --rc a persistent flag

Release v0.0.12

20 Mar 14:43
055be90
Compare
Choose a tag to compare
add support for release candidate versions (#8)

Adds support for creating and bumping Release Candidate versions.
It will check if there exists an rc version and if so bump that version number. Otherwise it will bump the version set by the other flags and then create an rc1 on that version.

v0.0.0 -> v0.0.1-rc1
v0.0.1-rc1 -> v0.0.1-rc2
v0.0.1 -> v0.0.2-rc1

Release v0.0.11

05 Feb 15:08
08f50d6
Compare
Choose a tag to compare
Expand GitHub PR references to full links (#7)

Release v0.0.10

14 Jun 19:23
Compare
Choose a tag to compare
fix history command

Release v0.0.9

09 Jun 12:30
ffd7117
Compare
Choose a tag to compare
Add --below option (#5)

Add --below option
This allows for specifying the highest version tag to take into account
when finding the version to bump.
Example:
 If your latest version is v2.1.0 but you need to add a patch to the
 v1 branch of your project, you could run:
 `git-semver --prefix v --patch --below v2.0.0`
 Which would then give you a new version from the v1 tree:
 `v1.5.1` (if your previous v1 tag was `v1.5.0`)

Release v0.0.8

03 May 12:09
40e2bc4
Compare
Choose a tag to compare
improve history formatting (#4)

v0.0.7

14 Apr 19:02
Compare
Choose a tag to compare
make sure there is a newline after each log line