* @sashabelonogov Update LayoutConstraint == operator to support iOS 10 and higher changes
* Simplify return statement of the LayoutConstraint == operator
* Update swift version 5.0
* Remove needless access control
* Fix misused "Available" annotations
* Support @unknown default
* Support swift 5.0 in test code
* Update podspec
* Update travis CI
* Code review by @freak4pc
* Add constraint for Swift version
* Fix build failed
* delegate identical 'constraint creation' code to 'prepareConstraints'
* adds 'set(isActivated:)' method to call appropriate 'activate/deactivate' based on bool
cleans up about 30 lines of
if foo { activate }
else { deactivate }
code in my app
* instead of 'set(isActivated:)', use 'isActive = value'
* Typealias the types that are different on mac and ios
Update tests because when failing they where being blocked and stoped running
* try xcode 9 version to see tests pass
* Renaming the Typealiases to remove Generic suffix and NS prefix
* make 'layoutConstraints' public again (#382)
* Fix wrong function call within contentCompressionResistanceHorizontalPriority (#387)
* Missing property topMargin on ConstraintMakerExtendable (#393)
This pull request adds the missing property "topMargin" to ConstraintMakerExtendable class.
* Switched main target build settings' "skip install" default settings to YES. (#391)
* Add an isActive API to Constraint
* Priority enum (#345)
* Adds ConstraintPriority enum to ConstraintMakerPrioritizable
* Constraints priority is now more robust
* Adds priority enum function
* Fixes compile error
* Adds failable initializer. Custom macOS medium priority. Adds back deleted methods
* Updates depracation messages
* Improve Priority API's
* Add extra protocol conformances to ConstraintPriority
* Tweak priority API's for offseting
* Tweak priority API's some more and add tests
* Prepare for release