Skip to content

Commit

Permalink
Bump version to 1.0.1 and deduplicate version number from podspec.
Browse files Browse the repository at this point in the history
  • Loading branch information
nolanw committed Aug 13, 2016
1 parent a48a77e commit a06edd6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased][]

## [1.0.1][]

* Pass updated html5lib-tests.
* Update return type of `-[HTMLNode textComponents]` to an array of `NSString`.
* Add a nonempty `Package.swift` as now required by Swift Package Manager.
Expand Down Expand Up @@ -88,7 +90,8 @@
* A new document initializer, `-[HTMLDocument initWithData:contentTypeHeader:]`, detects the character encoding as a browser would. This is the ideal initializer for HTML documents fetched over the network, or any other time when the character encoding isn't previously known. Note that HTML does not blindly use the encoding specified by the HTTP `Content-Type` header, so this initializer is still superior to parsing the `Content-Type` yourself.


[Unreleased]: https://github.com/nolanw/HTMLReader/compare/v1.0...HEAD
[Unreleased]: https://github.com/nolanw/HTMLReader/compare/v1.0.1...HEAD
[1.0.1]: https://github.com/nolanw/HTMLReader/compare/v1.0...1.0.1
[1.0]: https://github.com/nolanw/HTMLReader/compare/v0.9.6...1.0
[0.9.6]: https://github.com/nolanw/HTMLReader/compare/v0.9.5...v0.9.6
[0.9.5]: https://github.com/nolanw/HTMLReader/compare/v0.9.4...v0.9.5
Expand Down
2 changes: 1 addition & 1 deletion Framework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>1.0.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion HTMLReader.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'HTMLReader'
s.version = '1.0'
s.version = `/usr/libexec/PlistBuddy -c "Print :CFBundleShortVersionString" Framework/Info.plist`.strip
s.summary = "A WHATWG-compliant HTML parser in Objective-C."
s.homepage = 'https://github.com/nolanw/HTMLReader'
s.license = "Public domain"
Expand Down

0 comments on commit a06edd6

Please sign in to comment.