From 7b47a3a53a8bcb12fe0a92c2af4fe9cfb755ed12 Mon Sep 17 00:00:00 2001 From: kylie-bee Date: Tue, 14 Jan 2025 14:26:26 -0500 Subject: [PATCH] bump version 1.0.0-alpha --> 0.7.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 b92f2a3..03dd6f8 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ # Variables APP_NAME := "versionbump" -VERSION := "v1.0.0-alpha" +VERSION := "v0.7.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 54c9689..279cee3 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![VersionBump Gopher](assets/versionbump_gopher-250.png) -**Latest Version:** v1.0.0-alpha ([Install](#installation)) +**Latest Version:** v0.7.0-alpha ([Install](#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 @@ -204,7 +204,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/v1.0.0-alpha). +[here](https://github.com/ptgoetz/go-versionbump/releases/tag/v0.7.0-alpha). VersionBump binary distribution archives include the `README.md` and `versionbump[.exe]` files: @@ -373,7 +373,7 @@ and perform an initial commit before continuing. ```console $ versionbump patch -VersionBump v1.0.0-alpha +VersionBump v0.7.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 ceda55d..0fb07bc 100644 --- a/internal/versionbump.go +++ b/internal/versionbump.go @@ -16,7 +16,7 @@ import ( "gopkg.in/yaml.v2" ) -const Version = "1.0.0-alpha" +const Version = "0.7.0-alpha" // VersionBump represents the Version bump operation. type VersionBump struct { diff --git a/versionbump.yaml b/versionbump.yaml index df4de42..074c095 100644 --- a/versionbump.yaml +++ b/versionbump.yaml @@ -1,4 +1,4 @@ -version: "1.0.0-alpha" # The current version of the project. +version: "0.7.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: false # Whether to sign the git tag.