Skip to content

Commit

Permalink
Update for 0.7.9 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklockwood committed Oct 9, 2024
1 parent 48ffd02 commit d619a9f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## [0.7.8](https://github.com/nicklockwood/Euclid/releases/tag/0.7.9) (2024-10-09)

- Fixed extrusion along zero length path
- Vertex normals are no longer automatically stripped for flat-shaded meshes
- Added `Mesh.reflected(along:)`, `Polygon.reflected(along:)` and `Vertex.reflected(along:)`
- Added `Mesh.inset(by:)`, `Polygon.inset(by:)` and `Path.inset(by:)` methods
- Added `Mesh.icosphere()` primitive
- Added `Mesh.subdivide()` and `Polygon.subdivide()` methods
- Added `Polygon.mapVertices()` method

## [0.7.8](https://github.com/nicklockwood/Euclid/releases/tag/0.7.8) (2024-07-23)

- Fixed some bugs with `Path` subpaths
Expand Down
4 changes: 2 additions & 2 deletions Euclid.podspec.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Euclid",
"version": "0.7.8",
"version": "0.7.9",
"license": {
"type": "MIT",
"file": "LICENSE.md"
Expand All @@ -10,7 +10,7 @@
"authors": "Nick Lockwood",
"source": {
"git": "https://github.com/nicklockwood/Euclid.git",
"tag": "0.7.8"
"tag": "0.7.9"
},
"source_files": "Sources",
"requires_arc": true,
Expand Down
4 changes: 2 additions & 2 deletions Euclid.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 0.7.8;
MARKETING_VERSION = 0.7.9;
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
OTHER_SWIFT_FLAGS = "-Xfrontend -warn-long-expression-type-checking=75";
Expand Down Expand Up @@ -836,7 +836,7 @@
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 0.7.8;
MARKETING_VERSION = 0.7.9;
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
OTHER_SWIFT_FLAGS = "-Xfrontend -warn-long-expression-type-checking=75";
Expand Down

0 comments on commit d619a9f

Please sign in to comment.