Skip to content

Commit

Permalink
Bump version 0.5.2 --> 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ptgoetz committed Nov 4, 2024
1 parent d6f76bc commit 934903b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Variables
APP_NAME := "versionbump"
VERSION := "v0.5.2"
VERSION := "v0.5.3"
GO_FILES := $(shell find . -name '*.go' | grep -v /vendor/)
PKG := ./...
INTEGRATION_TEST_DIR := ./test/integration
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![VersionBump Gopher](assets/versionbump_gopher-250.png)

**Latest Version:** v0.5.2 ([Install](https://github.com/ptgoetz/go-versionbump?tab=readme-ov-file#installation))
**Latest Version:** v0.5.3 ([Install](https://github.com/ptgoetz/go-versionbump?tab=readme-ov-file#installation))

VersionBump is a powerful command-line tool designed to streamline the process of version management in your projects.
By automating version bumping, VersionBump ensures that your project’s version numbers are always up-to-date across all
Expand Down Expand Up @@ -96,7 +96,7 @@ go install github.com/ptgoetz/go-versionbump/cmd/versionbump@latest

### Without Go
If you don't have Go installed and just want the binary executable, you can download a prebuilt binaries from
[here](https://github.com/ptgoetz/go-versionbump/releases/tag/v0.5.2).
[here](https://github.com/ptgoetz/go-versionbump/releases/tag/v0.5.3).

VersionBump binary distribution archives include the `README.md` and `versionbump[.exe]` files:

Expand Down Expand Up @@ -261,7 +261,7 @@ and perform an initial commit before continuing.

```console
$ versionbump patch
VersionBump v0.5.2
VersionBump v0.5.3
Configuration file: versionbump.yaml
Project root directory: /Users/tgoetz/Projects/ptgoetz/test-project
Checking git configuration...
Expand Down
2 changes: 1 addition & 1 deletion internal/versionbump.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"text/template"
)

const Version = "0.5.2"
const Version = "0.5.3"

// VersionBump represents the Version bump operation.
type VersionBump struct {
Expand Down
2 changes: 1 addition & 1 deletion versionbump.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "0.5.2" # The current version of the project.
version: "0.5.3" # The current version of the project.
git-commit: true # Whether to create a git commit for the version bump.
git-tag: true # Whether to create a git tag for the version bump.
git-sign: true # Whether to sign the git tag.
Expand Down

0 comments on commit 934903b

Please sign in to comment.