Moved back to version scheme for development (#1360)

This commit is contained in:
Jeremy Wright
2023-07-01 05:08:10 -04:00
committed by GitHub
parent 8e7eb30125
commit f515d2c3d5
3 changed files with 3 additions and 2 deletions

View File

@ -4,7 +4,7 @@ try:
__version__ = version("cadquery") __version__ = version("cadquery")
except PackageNotFoundError: except PackageNotFoundError:
# package is not installed # package is not installed
__version__ = "2.3.1" __version__ = "2.4-dev"
# these items point to the OCC implementation # these items point to the OCC implementation
from .occ_impl.geom import Plane, BoundBox, Vector, Matrix, Location from .occ_impl.geom import Plane, BoundBox, Vector, Matrix, Location

View File

@ -2,6 +2,7 @@ Changes
======= =======
2.3.1 (latest release) 2.3.1 (latest release)
------
This was an incremental release to fix a broken PyPI package. This was an incremental release to fix a broken PyPI package.

View File

@ -39,7 +39,7 @@ if not is_rtd and not is_appveyor and not is_azure and not is_conda:
setup( setup(
name="cadquery", name="cadquery",
version="2.3.1", # Update this for the next release version="2.4.0dev", # Update this for the next release
url="https://github.com/CadQuery/cadquery", url="https://github.com/CadQuery/cadquery",
license="Apache Public License 2.0", license="Apache Public License 2.0",
author="David Cowden", author="David Cowden",