Skip to content

Commit

Permalink
Bump version 0.1.0 --> 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ptgoetz committed Sep 9, 2024
1 parent c5eb8fe commit 9e0cca4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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.1.0"
VERSION := "v0.1.1"
GO_FILES := $(shell find . -name '*.go' | grep -v /vendor/)
PKG := ./...
INTEGRATION_TEST_DIR := ./test/integration
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# go-versionbump

**Latest Version:** v0.1.0
**Latest Version:** v0.1.1

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
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
)

const VersionBumpVersion = "VersionBump v0.1.0"
const VersionBumpVersion = "VersionBump v0.1.1"

const (
VersionMajor = iota
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.1.0" # The current version of the project.
version: "0.1.1" # 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: false # Whether to sign the git tag.
Expand Down

0 comments on commit 9e0cca4

Please sign in to comment.