Skip to content

Commit

Permalink
Version 0.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
tttapa committed May 15, 2022
1 parent 63cad82 commit c374ba8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
A simple, minimal example of building a C++ program using CMake.
"""
__version__ = '0.0.9'
__version__ = '0.0.10'
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.9'
__version__ = '0.0.10'
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.18)
project(py-build-cmake VERSION 0.0.9)
project(py-build-cmake VERSION 0.0.10)
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.9'
__version__ = '0.0.10'
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.9'
__version__ = '0.0.10'

0 comments on commit c374ba8

Please sign in to comment.