From a5043b5369937614c2294435476aec883454c8f1 Mon Sep 17 00:00:00 2001 From: Pieter Pas Date: Mon, 31 Jan 2022 18:18:41 +0100 Subject: [PATCH] Version 0.0.1b0 --- examples/minimal/src-python/minimal/__init__.py | 2 +- examples/pybind11-project/CMakeLists.txt | 4 ++-- .../pybind11-project/python-src/pybind11_project/__init__.py | 2 +- src/py_build_cmake/__init__.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/minimal/src-python/minimal/__init__.py b/examples/minimal/src-python/minimal/__init__.py index 0aee5cd..a78ac9f 100644 --- a/examples/minimal/src-python/minimal/__init__.py +++ b/examples/minimal/src-python/minimal/__init__.py @@ -1,4 +1,4 @@ """ A simple, minimal example of building a Python C module using CMake. """ -__version__ = '0.0.0a3' \ No newline at end of file +__version__ = '0.0.1b0' \ No newline at end of file diff --git a/examples/pybind11-project/CMakeLists.txt b/examples/pybind11-project/CMakeLists.txt index 496b0d5..ed0938c 100644 --- a/examples/pybind11-project/CMakeLists.txt +++ b/examples/pybind11-project/CMakeLists.txt @@ -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 diff --git a/examples/pybind11-project/python-src/pybind11_project/__init__.py b/examples/pybind11-project/python-src/pybind11_project/__init__.py index 49e785b..1ffe179 100644 --- a/examples/pybind11-project/python-src/pybind11_project/__init__.py +++ b/examples/pybind11-project/python-src/pybind11_project/__init__.py @@ -1,2 +1,2 @@ """Example project using the py-build-cmake build backend and pybind11.""" -__version__ = '0.0.0a3' \ No newline at end of file +__version__ = '0.0.1b0' \ No newline at end of file diff --git a/src/py_build_cmake/__init__.py b/src/py_build_cmake/__init__.py index 7d98c40..2b4face 100644 --- a/src/py_build_cmake/__init__.py +++ b/src/py_build_cmake/__init__.py @@ -2,4 +2,4 @@ Modern, PEP 517 compliant build backend for building Python packages with extensions built using CMake. """ -__version__ = '0.0.0a3' \ No newline at end of file +__version__ = '0.0.1b0' \ No newline at end of file