From a48bd129b3f4e9c41e0aa037718c08b985bd1771 Mon Sep 17 00:00:00 2001 From: Mikael Simberg Date: Tue, 17 Mar 2026 15:30:00 +0100 Subject: [PATCH] Bump version to 0.5.0 --- .bumpversion.toml | 2 +- CMakeLists.txt | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.toml b/.bumpversion.toml index 55fd740b..883f0327 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.4.1" +current_version = "0.5.0" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}" diff --git a/CMakeLists.txt b/CMakeLists.txt index dae28823..62abe60d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ include(ghex_version) # note: version should not be changed manually, use bump-my-version instead: # install: pip install bump-my-version # example: bump-my-version bump patch -make_version(GHEX 0 4 1) +make_version(GHEX 0 5 0) project(GHEX VERSION ${GHEX_VERSION} LANGUAGES C CXX) diff --git a/pyproject.toml b/pyproject.toml index 5ab73345..5989be00 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ name = 'ghex' # note: version should not be changed manually, use bump-my-version instead: # install: pip install bump-my-version # example: bump-my-version bump patch -version = '0.4.1' +version = '0.5.0' license = {text = "BSD-3 License"} readme = {file = 'bindings/python/README.md', content-type = 'text/markdown'}