Skip to content

Commit 6cb4124

Browse files
Update changes and metadata for 2.5 (#1738)
* Update changes and metadata for 2.5 * Update version in setup.py * Update version in __init__.py * Update is_conda check
1 parent 7b9a48d commit 6cb4124

File tree

3 files changed

+53
-4
lines changed

3 files changed

+53
-4
lines changed

cadquery/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
__version__ = version("cadquery")
55
except PackageNotFoundError:
66
# package is not installed
7-
__version__ = "2.5-dev"
7+
__version__ = "2.5.0"
88

99
# these items point to the OCC implementation
1010
from .occ_impl.geom import Plane, BoundBox, Vector, Matrix, Location

changes.md

+50-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,56 @@
11
Changes
22
=======
33

4-
2.4.0 (latest release)
4+
2.5.0
5+
------
6+
7+
## Highlights
8+
* Free-function API https://github.com/CadQuery/cadquery/pull/1731, https://github.com/CadQuery/cadquery/pull/1469, https://github.com/CadQuery/cadquery/pull/1622,
9+
https://github.com/CadQuery/cadquery/pull/1672, https://github.com/CadQuery/cadquery/pull/1692, https://github.com/CadQuery/cadquery/pull/1700
10+
* filter/map/apply/sort/[]/invoke https://github.com/CadQuery/cadquery/pull/1514
11+
* cq.vis.show improvements https://github.com/CadQuery/cadquery/pull/1726
12+
13+
## Other changes
14+
* Getting set up for the new 2.5 dev cycle https://github.com/CadQuery/cadquery/pull/1496
15+
* Fix documentation hole, to many parameter https://github.com/CadQuery/cadquery/pull/1492
16+
* Add Brep to supported importShape functions https://github.com/CadQuery/cadquery/pull/1467
17+
* Fixed spelling error of 'visualziation' to 'visualization' https://github.com/CadQuery/cadquery/pull/1510
18+
* Fix Python version info in pip installation instructions https://github.com/CadQuery/cadquery/pull/1498
19+
* Updated setup.py for CQ black fork https://github.com/CadQuery/cadquery/pull/1513
20+
* Fixed gltf export instructions per #1508 https://github.com/CadQuery/cadquery/pull/1523
21+
* Fix VTK assembly render apply gp_Intrinsic_ZXY rotation https://github.com/CadQuery/cadquery/pull/1540
22+
* Add cubic and quadratic Bézier curves to Workplane and Sketch https://github.com/CadQuery/cadquery/pull/1529
23+
* Move DEFAULT_COLOR to vis https://github.com/CadQuery/cadquery/pull/1548
24+
* radiusArc: due to float looseness the length computation can be sligh… https://github.com/CadQuery/cadquery/pull/1528
25+
* Add support for 2D and 3D Wire fillet https://github.com/CadQuery/cadquery/pull/1549
26+
* Fix union with None https://github.com/CadQuery/cadquery/pull/1560
27+
* Describing the units of the result https://github.com/CadQuery/cadquery/pull/1570
28+
* Read global element variable at creation time of the promise,… https://github.com/CadQuery/cadquery/pull/1566
29+
* Fix units in toJSON https://github.com/CadQuery/cadquery/pull/1587
30+
* Add shape and workplane support to the Workplane.eachpoint() function. Issue #1395 https://github.com/CadQuery/cadquery/pull/1578
31+
* Fix crash on invalid faces https://github.com/CadQuery/cadquery/pull/1541
32+
* Fixed font-related test error on some platforms https://github.com/CadQuery/cadquery/pull/1577
33+
* Add support for closed path fillet to Wire.fillet() https://github.com/CadQuery/cadquery/pull/1573
34+
* Return False on Vector comparison with non-Vector https://github.com/CadQuery/cadquery/pull/1610
35+
* Get rid of nptyping https://github.com/CadQuery/cadquery/pull/1617
36+
* Call SetLocation to set top Assembly Location https://github.com/CadQuery/cadquery/pull/1623
37+
* sketch offset docs update https://github.com/CadQuery/cadquery/pull/1631
38+
* fix: Transform order in subassembly https://github.com/CadQuery/cadquery/pull/1629
39+
* Change Python REPL prompt from "$" to ">>>" https://github.com/CadQuery/cadquery/pull/1647
40+
* Sketch and Workplane improvements https://github.com/CadQuery/cadquery/pull/1633
41+
* Update Wire fillet docstring https://github.com/CadQuery/cadquery/pull/1630
42+
* Make CadQuery examples browsable in PartCAD https://github.com/CadQuery/cadquery/pull/1669
43+
* docs: Update install docs to Miniforge https://github.com/CadQuery/cadquery/pull/1682
44+
* fix: Deduplicate objects with same color on step export https://github.com/CadQuery/cadquery/pull/1690
45+
* Updated version specification for nlopt to try to resolve issues https://github.com/CadQuery/cadquery/pull/1718
46+
* doc/quickstart.rst: Emphasis the right lines https://github.com/CadQuery/cadquery/pull/1724
47+
* Set version in docs automatically from metadata https://github.com/CadQuery/cadquery/pull/1713
48+
* Fix workplane cylinder center when generated using a custom direction https://github.com/CadQuery/cadquery/pull/1593
49+
* Header cleanup https://github.com/CadQuery/cadquery/pull/1732
50+
* Add TypeVar to deprecate_kwarg_name to preserve type information https://github.com/CadQuery/cadquery/pull/1733
51+
* Docs cleanup https://github.com/CadQuery/cadquery/pull/1736
52+
53+
2.4.0
554
------
655

756
### Highlights

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
is_rtd = "READTHEDOCS" in os.environ
2222
is_appveyor = "APPVEYOR" in os.environ
2323
is_azure = "CONDA_PY" in os.environ
24-
is_conda = "CONDA_PREFIX_1" in os.environ
24+
is_conda = "CONDA_PREFIX" in os.environ
2525

2626
# Only include the installation dependencies if we are not running on RTD or AppVeyor or in a conda env
2727
if not is_rtd and not is_appveyor and not is_azure and not is_conda:
@@ -38,7 +38,7 @@
3838

3939
setup(
4040
name="cadquery",
41-
version="2.5.0dev", # Update this for the next release
41+
version="2.5.0", # Update this for the next release
4242
url="https://github.com/CadQuery/cadquery",
4343
license="Apache Public License 2.0",
4444
author="David Cowden",

0 commit comments

Comments
 (0)