Skip to content

Commit

Permalink
bump version 1.6.1 -> 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
igormcoelho committed May 20, 2024
1 parent 39e25f1 commit 5c25ae2
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.1`
- Version: `cxxbuild version=1.6.2`
- 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.1"
current_version="1.6.2"
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 @@ -10,7 +10,7 @@
import subprocess

def version():
v = "cxxbuild=1.6.1"
v = "cxxbuild=1.6.2"
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.1'
release = 'v1.6.2'


# -- 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.1"
version="1.6.2"
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.1',
version='1.6.2',
packages=['cxxbuild'],
# entry_points={
# 'console_scripts': [
Expand Down

0 comments on commit 5c25ae2

Please sign in to comment.