From 1eeeacb77322171aa281acc11d847a6e2c6962ad Mon Sep 17 00:00:00 2001 From: "P. Taylor Goetz" Date: Fri, 8 Nov 2024 13:26:47 -0500 Subject: [PATCH] Bump version 0.5.4 --> 0.6.0-alpha --- Makefile | 2 +- README.md | 6 +++--- internal/versionbump.go | 2 +- versionbump.yaml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index b434440..be46813 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ # Variables APP_NAME := "versionbump" -VERSION := "v0.5.4" +VERSION := "v0.6.0-alpha" GO_FILES := $(shell find . -name '*.go' | grep -v /vendor/) PKG := ./... INTEGRATION_TEST_DIR := ./test/integration diff --git a/README.md b/README.md index 33cec58..414e4af 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![VersionBump Gopher](assets/versionbump_gopher-250.png) -**Latest Version:** v0.5.4 ([Install](https://github.com/ptgoetz/go-versionbump?tab=readme-ov-file#installation)) +**Latest Version:** v0.6.0-alpha ([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 @@ -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.4). +[here](https://github.com/ptgoetz/go-versionbump/releases/tag/v0.6.0-alpha). VersionBump binary distribution archives include the `README.md` and `versionbump[.exe]` files: @@ -261,7 +261,7 @@ and perform an initial commit before continuing. ```console $ versionbump patch -VersionBump v0.5.4 +VersionBump v0.6.0-alpha Configuration file: versionbump.yaml Project root directory: /Users/tgoetz/Projects/ptgoetz/test-project Checking git configuration... diff --git a/internal/versionbump.go b/internal/versionbump.go index 45984de..ad0f492 100644 --- a/internal/versionbump.go +++ b/internal/versionbump.go @@ -15,7 +15,7 @@ import ( "text/template" ) -const Version = "0.5.4" +const Version = "0.6.0-alpha" // VersionBump represents the Version bump operation. type VersionBump struct { diff --git a/versionbump.yaml b/versionbump.yaml index 6a9f9fd..d3ca6ee 100644 --- a/versionbump.yaml +++ b/versionbump.yaml @@ -1,4 +1,4 @@ -version: "0.5.4" # The current version of the project. +version: "0.6.0-alpha" # 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.