Skip to content

Commit

Permalink
Version 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kean committed Jun 21, 2020
1 parent 2653dda commit 40a29de
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Align.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Align"
s.version = "2.2.1"
s.version = "2.3.0"
s.summary = "An intuitive and powerful Auto Layout library"

s.homepage = "https://github.com/kean/Align"
Expand Down
4 changes: 2 additions & 2 deletions Align.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@
INFOPLIST_FILE = "$(SRCROOT)/Supporting/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 2.2.1;
MARKETING_VERSION = 2.3.0;
PRODUCT_BUNDLE_IDENTIFIER = com.github.kean.Align;
PRODUCT_NAME = Align;
SKIP_INSTALL = YES;
Expand All @@ -486,7 +486,7 @@
INFOPLIST_FILE = "$(SRCROOT)/Supporting/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 2.2.1;
MARKETING_VERSION = 2.3.0;
PRODUCT_BUNDLE_IDENTIFIER = com.github.kean.Align;
PRODUCT_NAME = Align;
SKIP_INSTALL = YES;
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

## Align 2.3.0

*June 20, 2020*

- `Constraints` type now conforms to `Collection` protocol (backed by `Array`)
- Add `clamp(to limit: ClosedRange<CGFloat>)` API for dimension anchors
- Add `Constraints` `activate()` and `deactivate()` methods
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Align introduces a better alternative to Auto Layout [anchors](https://developer
- **Powerful**. Create multiple constraints with a single line of code.
- **Type Safe**. Makes it impossible to create invalid constraints, at compile time.
- **Fluent**. Concise and clear API that follows [Swift API Design Guidelines](https://swift.org/documentation/api-design-guidelines/).
- **Simple**. Stop worrying about `translatesAutoresizingMaskIntoConstraints` and manually activating constraints.
- **Simple**. Stop worrying about `translatesAutoresizingMaskIntoConstraints` and constraints activation.

To give you a taste of what the *semantic* APIs look like, here is an example:

Expand Down

0 comments on commit 40a29de

Please sign in to comment.