Skip to content

Commit

Permalink
bump version 1.6.0 -> 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
igormcoelho committed May 19, 2024
1 parent e762af0 commit 1946f5e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

_**cxxbuild** (or "cplusplusbuild") is a python script to easily generate C/C++ build files for cmake and bazel._

- Version: `cxxbuild version=1.6.0`
- Version: `cxxbuild version=1.6.1`
- Installation: `pip install cxxbuild` (or `pipx install cxxbuild` for newer distributions)

For basic introduction, read the post: [Using cxxbuild to easily build C++ project with tests and dependencies](https://igormcoelho.medium.com/using-cxxbuild-to-easily-build-c-project-with-tests-and-dependencies-a3726b453f75)
Expand Down
2 changes: 1 addition & 1 deletion bumpver.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpver]
current_version="1.6.0"
current_version="1.6.1"
version_pattern="MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message="bump version {old_version} -> {new_version}"
commit=true
Expand Down
2 changes: 1 addition & 1 deletion cxxbuild/cxxbuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import subprocess

def version():
v = "cxxbuild=1.6.0"
v = "cxxbuild=1.6.1"
return v

def usage():
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Igor Machado Coelho'

# The full version, including alpha/beta/rc tags
release = 'v1.6.0'
release = 'v1.6.1'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend="setuptools.build_meta"

[project]
name="cxxbuild"
version="1.6.0"
version="1.6.1"
description="CxxBuild is a python script to easily build C++ programs: just invoke 'cxxbuild' and it works!"
readme="README.md"
authors=[{ name="Igor Machado Coelho", email="igormcoelho@proton.me" }]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='cxxbuild',
version='1.6.0',
version='1.6.1',
packages=['cxxbuild'],
# entry_points={
# 'console_scripts': [
Expand Down

0 comments on commit 1946f5e

Please sign in to comment.