Skip to content

Commit

Permalink
Bump version to 0.9.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
nolanw committed Feb 3, 2016
1 parent 5e9746c commit 7581976
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 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][]

## [0.9.4][] – 2016-02-02

* Fix nullability attributions and uses of nullable values.
* Fixed by [dlkinney](https://github.com/dlkinney) in #49.
* Add `-[HTMLDocument bodyElement]` for convenient access to the `<body>` element.
Expand Down Expand Up @@ -68,7 +70,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/v0.9.3...HEAD
[Unreleased]: https://github.com/nolanw/HTMLReader/compare/v0.9.4...HEAD
[0.9.4]: https://github.com/nolanw/HTMLReader/compare/v0.9.3...v0.9.4
[0.9.3]: https://github.com/nolanw/HTMLReader/compare/v0.9.2...v0.9.3
[0.9.2]: https://github.com/nolanw/HTMLReader/compare/v0.9.1...v0.9.2
[0.9.1]: https://github.com/nolanw/HTMLReader/compare/v0.9...v0.9.1
Expand Down
4 changes: 2 additions & 2 deletions Framework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.9.3</string>
<string>0.9.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>28</string>
<string>29</string>
<key>NSHumanReadableCopyright</key>
<string>Public domain.</string>
<key>NSPrincipalClass</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 = '0.9.3'
s.version = '0.9.4'
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 7581976

Please sign in to comment.