Skip to content

Commit

Permalink
Merge pull request #21 from Pimine/denis_release_1_6_3
Browse files Browse the repository at this point in the history
Release 1.6.3
  • Loading branch information
denandreychuk authored Oct 6, 2022
2 parents 42e4e4b + f691781 commit ce78b3d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions EasySwiftLayout.podspec
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Pod::Spec.new do |s|
s.name = 'EasySwiftLayout'
s.version = '1.6.2'
s.version = '1.6.3'
s.license = 'MIT'
s.summary = 'Lightweight Swift framework for Auto-Layout. Helps you write readable and compact UI code using simple API.'
s.homepage = 'https://github.com/denandreychuk/EasySwiftLayout'
s.authors = { 'Den Andreychuk' => 'denis.andrei4uk@yandex.ua' }
s.authors = { 'Den Andreychuk' => 'denis.andrei4uk@gmail.com' }
s.social_media_url = 'https://www.instagram.com/den.andreychuk'
s.source = { :git => 'https://github.com/denandreychuk/EasySwiftLayout.git', :tag => s.version.to_s }

Expand Down
8 changes: 4 additions & 4 deletions EasySwiftLayout.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
Expand All @@ -531,7 +531,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 1.6;
MARKETING_VERSION = 1.6.3;
PRODUCT_BUNDLE_IDENTIFIER = com.denandreychuk.EasySwiftLayout;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand All @@ -549,7 +549,7 @@
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
Expand All @@ -559,7 +559,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 1.6;
MARKETING_VERSION = 1.6.3;
PRODUCT_BUNDLE_IDENTIFIER = com.denandreychuk.EasySwiftLayout;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ Sets the size of the view using the specified type of relation to the size of an
##### Declaration

```swift
func size(match anotherView: UIView, withInset inset: CGFloat = .zero, usingRelation relation: NSLayoutConstraint.Relation = .equal, priority: UILayoutPriority = .required) -> Self
func size(match anotherView: UIView, withInset inset: CGFloat, usingRelation relation: NSLayoutConstraint.Relation = .equal, priority: UILayoutPriority = .required) -> Self
```

##### Discussion
Expand Down
2 changes: 1 addition & 1 deletion Sources/UIView + Size.swift
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ public extension UIView {
@discardableResult
func size(
match anotherView: UIView,
withInset inset: CGFloat = .zero,
withInset inset: CGFloat,
usingRelation relation: NSLayoutConstraint.Relation = .equal,
priority: UILayoutPriority = .required
) -> Self {
Expand Down

0 comments on commit ce78b3d

Please sign in to comment.