Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.7-dev"
__version__ = "2.7.0"

# these items point to the OCC implementation
from .occ_impl.geom import Plane, BoundBox, Vector, Matrix, Location
Expand Down
33 changes: 33 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,39 @@
Changes
=======

2.7.0
-----

## Highlights

* Enable bidirectional mapping of subshapes by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1949
* Add Basic Materials Functionality by @jmwright in https://github.com/CadQuery/cadquery/pull/1923
* Materials Support for STEP Import/Export by @jmwright in https://github.com/CadQuery/cadquery/pull/1956
* Replace deprecated pyparsing names and arguments by @lorenzncode in https://github.com/CadQuery/cadquery/pull/1974
* Remove deprecated functions by @lorenzncode in https://github.com/CadQuery/cadquery/pull/1972
* Multimethod changes and type checking by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1969

## Other changes

* Make FXAA optional in `show` by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1938
* Fix single letter text handling by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1939
* Enhance vis.py `show` routine by @winksaville in https://github.com/CadQuery/cadquery/pull/1855
* Fix jupyter display missing opacity by @lorenzncode in https://github.com/CadQuery/cadquery/pull/1941
* Use focal point as the center of rotation by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1948
* Fix clipping range by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1951
* Fix close for mixed mode edges by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1477
* Update cqgi for py3.14 by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1986
* Fix the function call errors for gp_Ax2() and size() by @yuan-xy in https://github.com/CadQuery/cadquery/pull/1977
* Enhance color initialization with hex support by @akivab in https://github.com/CadQuery/cadquery/pull/1980
* Replacing typish with runtype by @jmwright in https://github.com/CadQuery/cadquery/pull/1967
* Update sphinx multimethod customization to handle toplevel functions by @lorenzncode in https://github.com/CadQuery/cadquery/pull/1932
* Add pytest.ini to improve dev QoL by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1971
* Create `Plane` from `Location` by @Joschua-Conrad in https://github.com/CadQuery/cadquery/pull/1912

## Experimental

* Add GUI elements to `fig.Figure` by @adam-urbanczyk in https://github.com/CadQuery/cadquery/pull/1943

2.6.1
-----

Expand Down
2 changes: 1 addition & 1 deletion conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ requirements:
- trame-vtk
- trame-components
- trame-vuetify
- path

test:
requires:
- pytest
- docutils
- path
source_files:
- tests/
commands:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

setup(
name="cadquery",
version="2.7-dev",
version="2.7.0",
url="https://github.com/CadQuery/cadquery",
license="Apache Public License 2.0",
author="David Cowden",
Expand Down