Skip to content

Commit

Permalink
Version 0.0.1b0
Browse files Browse the repository at this point in the history
  • Loading branch information
tttapa committed Jan 31, 2022
1 parent b042286 commit a5043b5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
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.0a3'
__version__ = '0.0.1b0'
4 changes: 2 additions & 2 deletions examples/pybind11-project/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.20)
project(py-build-cmake VERSION 0.0.0)
set(PY_VERSION_SUFFIX "a3")
project(py-build-cmake VERSION 0.0.1)
set(PY_VERSION_SUFFIX "b0")
set(PY_FULL_VERSION ${PROJECT_VERSION}${PY_VERSION_SUFFIX})

# Make sure that the Python and CMake versions match
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.0a3'
__version__ = '0.0.1b0'
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.0a3'
__version__ = '0.0.1b0'

0 comments on commit a5043b5

Please sign in to comment.