From 9e0cca465ef599d6f9cd574a968fa2df547680e3 Mon Sep 17 00:00:00 2001 From: "P. Taylor Goetz" Date: Mon, 9 Sep 2024 17:16:58 -0400 Subject: [PATCH] Bump version 0.1.0 --> 0.1.1 --- Makefile | 2 +- README.md | 2 +- internal/version/version.go | 2 +- versionbump.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index f4b4c24..10e2836 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/README.md b/README.md index 60171fa..ae3fa59 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/internal/version/version.go b/internal/version/version.go index 6ca88ce..e1cf73d 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -6,7 +6,7 @@ import ( "strings" ) -const VersionBumpVersion = "VersionBump v0.1.0" +const VersionBumpVersion = "VersionBump v0.1.1" const ( VersionMajor = iota diff --git a/versionbump.yaml b/versionbump.yaml index d6f5ba4..168d22c 100644 --- a/versionbump.yaml +++ b/versionbump.yaml @@ -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.