Skip to content

Commit

Permalink
Updated for 0.2.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklockwood committed Jan 11, 2020
1 parent 186fd08 commit 68d2844
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [0.2.2](https://github.com/nicklockwood/Euclid/releases/tag/0.2.2) (2020-01-11)

- Fixed infinite loop when constructing BSP for CSG operations
- Clip to plane function now fills correctly if plane does not pass through the origin
- LineSegment initializer is now public

## [0.2.1](https://github.com/nicklockwood/Euclid/releases/tag/0.2.1) (2020-01-11)

- Improved CSG performance by 2X on average
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.2.1",
"version": "0.2.2",
"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.2.1"
"tag": "0.2.2"
},
"source_files": "Sources",
"requires_arc": true,
Expand Down
2 changes: 1 addition & 1 deletion Sources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.2.1</string>
<string>0.2.2</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
Expand Down
1 change: 0 additions & 1 deletion Tests/VectorTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,4 @@ class VectorTests: XCTestCase {
let plane = Plane(unchecked: vector1, pointOnPlane: Vector.zero)
XCTAssertEqual(vector2.distance(from: plane), -1.5)
}

}

0 comments on commit 68d2844

Please sign in to comment.