Skip to content

Commit

Permalink
Bump to version 2.3.1 to fix broken PyPI package
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwright committed Jun 28, 2023
1 parent 96b36a7 commit 8e7eb30
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cadquery/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 5 additions & 1 deletion changes.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 8e7eb30

Please sign in to comment.