From 8e7eb3012531fabd3b7dc9fc08d9b43f0552c4e5 Mon Sep 17 00:00:00 2001 From: Jeremy Wright Date: Wed, 28 Jun 2023 09:17:59 -0400 Subject: [PATCH] Bump to version 2.3.1 to fix broken PyPI package --- cadquery/__init__.py | 2 +- changes.md | 6 +++++- doc/conf.py | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/cadquery/__init__.py b/cadquery/__init__.py index 4e48e2e36..dd090f3d7 100644 --- a/cadquery/__init__.py +++ b/cadquery/__init__.py @@ -4,7 +4,7 @@ __version__ = version("cadquery") except PackageNotFoundError: # package is not installed - __version__ = "2.3.0" + __version__ = "2.3.1" # these items point to the OCC implementation from .occ_impl.geom import Plane, BoundBox, Vector, Matrix, Location diff --git a/changes.md b/changes.md index 5becb69eb..450634d5a 100644 --- a/changes.md +++ b/changes.md @@ -1,7 +1,11 @@ Changes ======= -2.3.0 (latest release) +2.3.1 (latest release) + +This was an incremental release to fix a broken PyPI package. + +2.3.0 ------ ### Highlights diff --git a/doc/conf.py b/doc/conf.py index f0a713545..f66cef78d 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -70,7 +70,7 @@ # The short X.Y version. version = "2.3" # The full version, including alpha/beta/rc tags. -release = "2.3.0" +release = "2.3.1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index f419ec05c..be5f6fa3e 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ setup( name="cadquery", - version="2.3.0", # Update this for the next release + version="2.3.1", # Update this for the next release url="https://github.com/CadQuery/cadquery", license="Apache Public License 2.0", author="David Cowden",