diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 23b8171a..72504b07 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -24,7 +24,7 @@ A clear and concise description of what you expected to happen. If applicable, add output from `hyper-bump-it` (text is preferred over screenshots). **Environment information:** - - `hyper-bump-it` Version [e.g. 0.2.0] + - `hyper-bump-it` Version [e.g. 0.3.0] - OS: [e.g. Linux] - Python Version [e.g. 3.11.1] - Git Version [e.g. 2.39.0] diff --git a/CHANGELOG.md b/CHANGELOG.md index 150041b0..eb838ed8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0] - 2023-01-26 + ### Added * Ability to limit allowed starting branch. diff --git a/docs/index.md b/docs/index.md index c530d33f..3e324072 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,4 +1,4 @@ -# Hyper Bump It - 0.2.0 +# Hyper Bump It - 0.3.0 [![CI pipeline status](https://github.com/plannigan/hyper-bump-it/actions/workflows/main.yml/badge.svg?branch=main)][ci] [![PyPI](https://img.shields.io/pypi/v/hyper-bump-it)][pypi] diff --git a/hyper_bump_it/__init__.py b/hyper_bump_it/__init__.py index d3ec452c..493f7415 100644 --- a/hyper_bump_it/__init__.py +++ b/hyper_bump_it/__init__.py @@ -1 +1 @@ -__version__ = "0.2.0" +__version__ = "0.3.0" diff --git a/pyproject.toml b/pyproject.toml index f91ac34d..0e9d0c50 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "hyper-bump-it" -version = "0.2.0" +version = "0.3.0" description = "A version bumping tool" readme = "README.md" requires-python = ">=3.9,<4.0"