Switching version info back

This commit is contained in:
Jeremy Wright
2023-01-31 08:13:37 -05:00
parent 4d53aca609
commit a86c717609
2 changed files with 3 additions and 3 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.2.0" __version__ = "2.3-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

@ -40,8 +40,8 @@ if not is_rtd and not is_appveyor and not is_azure and not is_conda:
setup( setup(
name="cadquery", name="cadquery",
# use_scm_version=True, use_scm_version=True,
version="2.2.0", # version="2.3.0", # Uncomment 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",