Skip to content

Commit ecc41be

Browse files
committed
Changed OCP wheel version pin and added Highlights section to changelog
1 parent 45352fc commit ecc41be

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ dist/*
55
.idea/*
66
cadquery.egg-info/
77
target/*
8+
.eggs/
89
.vscode
910
MANIFEST
1011
out.*
@@ -26,3 +27,7 @@ nested.stp
2627
nested.wrl
2728
nested.xml
2829
nested.zip
30+
nested.stl
31+
out1.3mf
32+
out2.3mf
33+
out3.3mf

changes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ Changes
33

44
2.2.0 (latest release)
55
------
6+
### Highlights
7+
* Introduced a new Sketch API dedicated to 2D planar operations.
8+
* New constraint types were added to use with the Assembly solver.
9+
610
### Breaking changes
711
* Renamed the argument for `Workplane.extrude` from `distance` to `until` and `Workplane.cutBlind`'s `distanceToCut` also to `until`. This is only a breaking change if you use the named parameters, i.e. `extrude(distance = 10.0)` or `cutBlind(distanceToCut)` instead of using positional them as positional parameters.
812
* Fixed a bug in `Mixin1DProtocol.tangentAt()` where `paramAt()` was being called twice. This should only break scripts that relied on the incorrect behavior. [#641](https://github.com/CadQuery/cadquery/pull/641)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
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:
2828
reqs = [
29-
"cadquery-ocp>=7.6,<7.7",
29+
"cadquery-ocp>=7.7.0a0,<7.8",
3030
"ezdxf",
3131
"multimethod>=1.7,<2.0",
3232
"nlopt",

0 commit comments

Comments
 (0)