Skip to content

Commit

Permalink
Version 0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tttapa committed Apr 30, 2022
1 parent 488c924 commit a143e05
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ example projects.
- [x] ~~Entry point support~~
- [ ] Namespace package support ([PEP 420](https://www.python.org/dev/peps/pep-0420/))
- [ ] Doxygen and Sphinx support
- [x] macOS support
- [x] ~~macOS support~~
2 changes: 1 addition & 1 deletion examples/minimal/src-python/minimal/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
A simple, minimal example of building a Python C module using CMake.
"""
__version__ = '0.0.6'
__version__ = '0.0.7'
2 changes: 1 addition & 1 deletion examples/pybind11-project/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.20)
project(py-build-cmake VERSION 0.0.6)
project(py-build-cmake VERSION 0.0.7)
set(PY_VERSION_SUFFIX "")
set(PY_FULL_VERSION ${PROJECT_VERSION}${PY_VERSION_SUFFIX})

Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Example project using the py-build-cmake build backend and pybind11."""
__version__ = '0.0.6'
__version__ = '0.0.7'
2 changes: 1 addition & 1 deletion src/py_build_cmake/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Modern, PEP 517 compliant build backend for building Python packages with
extensions built using CMake.
"""
__version__ = '0.0.6'
__version__ = '0.0.7'

0 comments on commit a143e05

Please sign in to comment.