Skip to content

Commit

Permalink
Updates to 4.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
s4cha committed Mar 9, 2019
1 parent 7137427 commit f6bf62e
Show file tree
Hide file tree
Showing 18 changed files with 3,122 additions and 6 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
Put unreleased changes here

## [4.4.4] - 2019-01-03
### Changed
`fillContainer` now returns self to make it chainable

## [4.4.3] - 2019-01-03
### Changed
Fixes Equation api >= broken operator

## [4.4.2] - 2019-01-03
### Changed
Fixes view.bottom/top/right/leftConstraint possibly returning wrong constraint if the one you want is not there yet. (looking for constraint in the view itself after looking for it in the superview)
The fix makes sure it only looks for the constraint in the view itself for width and height constraints, that corresponds to constraints added via width/heightAnchors api.

## [4.4.1] - 2018-12-28
### Changed
- Make sure userAddedConstraints doesn't return layout margins. Fixes #104 Kudos @mpsnp 👏
- Code clean
- Removing deprecated tap helper (discussion here #42) alternatives : https://github.com/XCEssentials/ViewEvents

## [4.4.0] - 2018-09-18
### Changed
- Add support for Xcode10 & Swift 4.2
Expand Down
1,130 changes: 1,130 additions & 0 deletions Carthage/Build/iOS/8AD283C5-07F8-3EC8-8882-3B7B5B4178CF.bcsymbolmap

Large diffs are not rendered by default.

1,054 changes: 1,054 additions & 0 deletions Carthage/Build/iOS/AF3B2C33-1C65-39E0-AF82-5AA1421445F4.bcsymbolmap

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified Carthage/Build/iOS/Stevia.framework/Info.plist
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
913 changes: 913 additions & 0 deletions Carthage/Build/tvOS/1D0686A3-30C1-33B3-9A68-DBDD3323E3C6.bcsymbolmap

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified Carthage/Build/tvOS/Stevia.framework/Info.plist
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,4 +198,4 @@ Become a sponsor and get your logo on our README on Github with a link to your s
- Swift 3 -> [v**3.2.0**](https://github.com/freshOS/Stevia/releases/tag/3.2.0)
- Swift 4 -> [v**4.2.0**](https://github.com/freshOS/Stevia/releases/tag/4.2.0)
- Swift 4.1 -> [v**4.3.2**](https://github.com/freshOS/Stevia/releases/tag/4.3.2)
- Swift 4.2 -> [v**4.4.3**](https://github.com/freshOS/Stevia/releases/tag/4.4.3)
- Swift 4.2 -> [v**4.4.4**](https://github.com/freshOS/Stevia/releases/tag/4.4.4)
2 changes: 1 addition & 1 deletion Source/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>4.4.3</string>
<string>4.4.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion SteviaLayout.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SteviaLayout'
s.version = "4.4.3"
s.version = "4.4.4"
s.summary = "Elegant view layout for iOS"
s.homepage = "https://github.com/s4cha/Stevia"
s.license = { :type => "MIT", :file => "LICENSE" }
Expand Down
2 changes: 1 addition & 1 deletion SteviaTV/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>4.4.3</string>
<string>4.4.4</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down

0 comments on commit f6bf62e

Please sign in to comment.