Skip to content

Releases: Rightpoint/Anchorage

4.5.0

30 Oct 15:38
23a6dd0
Compare
Choose a tag to compare

New Features

  • Optional, faster-compiling alternatives to equality operators have been added (/==/, /<=/, />=/). See #93 for details.

4.4.0

03 Feb 19:47
18fed38
Compare
Choose a tag to compare

New Features

  • Swift Package Manager support #86 (thanks @ZevEisenberg!)
  • Runs tests using Xcode 11 for Swift 4.2 and 5.0

Deprecations

  • Drops official support for Xcode 10.x and Swift 4.0, although they should still continue to work.

See all commits since 4.3.1.

4.3.1

31 May 00:57
Compare
Choose a tag to compare

New Features

  • Full support for Xcode 10.2 and Swift 5.0

Deprecations

  • Drops official support for Xcode 9.x

See all commits since 4.3.

4.3

22 Sep 20:11
Compare
Choose a tag to compare
4.3

New Features

4.2.4

25 Jun 20:32
Compare
Choose a tag to compare

See all commits since 4.2.3.

Bug Fixes

  • Allow construction of an AnchorPair outside of Anchorage. (#59, @ZevEisenberg)
    • Note: this change is non-breaking, but to realize its benefits, you may need to delete code like this if you had added it to your project:

      extension AnchorPair {
          init(first: T, second: U) {
              self.first = first
              self.second = second
          }
      }

4.2.3

20 Jun 14:22
Compare
Choose a tag to compare

See all commits since 4.2.2.

Bug Fixes

  • Added support for building with Swift 4.2 in Xcode 10. (#60, @kabiroberai)

4.2.2

18 Apr 19:06
Compare
Choose a tag to compare

See all commits since 4.2.1.

Bug Fixes

4.2.1

19 Dec 20:48
Compare
Choose a tag to compare

4.2

29 Nov 15:52
Compare
Choose a tag to compare
4.2
  • Add support for multiplier constraints derived from axis, thanks to @sanekgusev

4.1

25 Sep 21:00
Compare
Choose a tag to compare
4.1

Anchorage 4.1 adds support for Xcode 9, iOS 11, tvOS 11, and macOS 10.13.

This version also drops support for Float80. If you were previously using this floating-point type in UI code, you may want to... reconsider.