Skip to content

Commit

Permalink
Added Version for Changelog
Browse files Browse the repository at this point in the history
- changed podspec file to use the new version
  • Loading branch information
mRs- committed Jan 8, 2017
1 parent 4629f63 commit e5e7483
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 12 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,16 @@ All notable changes to this project will be documented in this file.
`HexColors` adheres to [Semantic Versioning](http://semver.org/).

---
## [5.0.0] (https://github.com/mRs-/HexColors/tree/5.0.0)
* Completetly rewritten in Swift 3.0
* hx_colorWithHexString / hx_colorWithHexRGBAString are not working any more
* breaking API-Changes
* Create UI/NSColor now with `UIColor("#FF00FF")` or `NSColor("#00FFFF")`
* For Objective-C support switch to Version [4.0.0] (https://github.com/mRs-/HexColors/tree/5.0.0)

## [4.0.0] (https://github.com/mRs-/HexColors/tree/4.0.0)
* depricating hx_colorWithHexString use hx_colorWithHexRGBAString instead
** we moved from hx_colorWithHexString to show you where we are heading in the future. Most of you are not using the alpha component of this so we are moving this to colorWithHexRGBA, because most browsers are doing the same here. It's just natural to follow this through the library. We will drop this in colorWithHexString in 5.0.0
** we moved from hx_colorWithHexString to show you where we are heading in the future. Most of you are not using the alpha component of this so we are moving this to colorWithHexRGBA, because most browsers are doing the same here. It's just natural to follow this through the library.

## [3.1.1] (https://github.com/mRs-/HexColors/tree/3.1.1)
* added cocoadocs
Expand Down
22 changes: 12 additions & 10 deletions HexColors.podspec
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
Pod::Spec.new do |s|
s.name = 'HexColors'
s.version = '4.0.0'
s.license = 'MIT'
s.summary = 'Easy HEX- and RGB-Color Handling for UIColor and NSColor as a drop in category. Former MLUIColorAdditions.'
s.name = 'HexColors'
s.version = '5.0.0'
s.license = 'MIT'
s.summary = 'HexColors is an extension for UIColor and NSColor to support for creating colors from a hex strings.'
s.homepage = 'https://github.com/mRs-/HexColors'
s.description = %{
HexColors is easy drop in category for HexColor integration in iOS and Mac OS X. Its build as a category for easy to use and can be used for UIColor and NSColor class.
HexColors is an extension for UIColor and NSColor to support for creating colors from a hex string like #FF0088 or 8844FF and back to a String. Completely rewritten in Swift 3!
If you want to use this in Objective-C jump to the 4.X version Tag.
}
s.author = { "Marius Landwehr" => "marius.landwehr@gmail.com", "holgersindbaek" => "holgersindbaek@gmail.com" }
s.source = { :git => 'https://github.com/mRs-/HexColors.git', :tag => s.version.to_s}
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.6'
s.author = { "Marius Landwehr" => "[email protected]" }
s.source = { :git => 'https://github.com/mRs-/HexColors.git', :tag => s.version.to_s}
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.source_files = 'Classes/HexColors.{h,m}'
s.source_files = 'Sources/*.swift'
end
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

HexColors is an extension for UIColor and NSColor to support for creating colors from a hex string like #FF0088 or 8844FF and back to a String. Completely rewritten in Swift 3!

If you want to use this in Objective-C jump to the 3.X version Tag.
If you want to use this in Objective-C jump to the 4.X version tag.

#RELEASE 5.0.0
Completely new and fresh in Swift 3.
Expand Down

0 comments on commit e5e7483

Please sign in to comment.