Skip to content

Commit b8137fd

Browse files
Prepare for 2.7.0 (#1988)
* Prepare for 2.7.0 * Bump version to 2.7.0 * Update __version__ to 2.7.0 * Add path to run reqs Remove 'path' from test requirements in meta.yaml
1 parent 6cd5eeb commit b8137fd

4 files changed

Lines changed: 36 additions & 3 deletions

File tree

cadquery/__init__.py

Lines changed: 1 addition & 1 deletion
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.7-dev"
7+
__version__ = "2.7.0"
88

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

changes.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,39 @@
11
Changes
22
=======
33

4+
2.7.0
5+
-----
6+
7+
## Highlights
8+
9+
* Enable bidirectional mapping of subshapes by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1949
10+
* Add Basic Materials Functionality by @jmwright in https://github.com/CadQuery/cadquery/pull/1923
11+
* Materials Support for STEP Import/Export by @jmwright in https://github.com/CadQuery/cadquery/pull/1956
12+
* Replace deprecated pyparsing names and arguments by @lorenzncode in https://github.com/CadQuery/cadquery/pull/1974
13+
* Remove deprecated functions by @lorenzncode in https://github.com/CadQuery/cadquery/pull/1972
14+
* Multimethod changes and type checking by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1969
15+
16+
## Other changes
17+
18+
* Make FXAA optional in `show` by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1938
19+
* Fix single letter text handling by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1939
20+
* Enhance vis.py `show` routine by @winksaville in https://github.com/CadQuery/cadquery/pull/1855
21+
* Fix jupyter display missing opacity by @lorenzncode in https://github.com/CadQuery/cadquery/pull/1941
22+
* Use focal point as the center of rotation by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1948
23+
* Fix clipping range by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1951
24+
* Fix close for mixed mode edges by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1477
25+
* Update cqgi for py3.14 by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1986
26+
* Fix the function call errors for gp_Ax2() and size() by @yuan-xy in https://github.com/CadQuery/cadquery/pull/1977
27+
* Enhance color initialization with hex support by @akivab in https://github.com/CadQuery/cadquery/pull/1980
28+
* Replacing typish with runtype by @jmwright in https://github.com/CadQuery/cadquery/pull/1967
29+
* Update sphinx multimethod customization to handle toplevel functions by @lorenzncode in https://github.com/CadQuery/cadquery/pull/1932
30+
* Add pytest.ini to improve dev QoL by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1971
31+
* Create `Plane` from `Location` by @Joschua-Conrad in https://github.com/CadQuery/cadquery/pull/1912
32+
33+
## Experimental
34+
35+
* Add GUI elements to `fig.Figure` by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1943
36+
437
2.6.1
538
-----
639

conda/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ requirements:
3030
- trame-vtk
3131
- trame-components
3232
- trame-vuetify
33+
- path
3334

3435
test:
3536
requires:
3637
- pytest
3738
- docutils
38-
- path
3939
source_files:
4040
- tests/
4141
commands:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
setup(
4545
name="cadquery",
46-
version="2.7-dev",
46+
version="2.7.0",
4747
url="https://github.com/CadQuery/cadquery",
4848
license="Apache Public License 2.0",
4949
author="David Cowden",

0 commit comments

Comments
 (0)