From a86c717609eb63d2bb3d60b99bce3328b23da1e7 Mon Sep 17 00:00:00 2001 From: Jeremy Wright Date: Tue, 31 Jan 2023 08:13:37 -0500 Subject: [PATCH] Switching version info back --- cadquery/__init__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cadquery/__init__.py b/cadquery/__init__.py index ae777af4c..1c4c5cd5a 100644 --- a/cadquery/__init__.py +++ b/cadquery/__init__.py @@ -4,7 +4,7 @@ __version__ = version("cadquery") except PackageNotFoundError: # package is not installed - __version__ = "2.2.0" + __version__ = "2.3-dev" # these items point to the OCC implementation from .occ_impl.geom import Plane, BoundBox, Vector, Matrix, Location diff --git a/setup.py b/setup.py index 413efb81a..40edae446 100644 --- a/setup.py +++ b/setup.py @@ -40,8 +40,8 @@ setup( name="cadquery", - # use_scm_version=True, - version="2.2.0", + use_scm_version=True, + # version="2.3.0", # Uncomment this for the next release url="https://github.com/CadQuery/cadquery", license="Apache Public License 2.0", author="David Cowden",