M CHANGELOG.md => CHANGELOG.md +11 -0
@@ 6,6 6,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
+## [0.2.0] - 2020-05-11
+
+### Added
+
+- Allow for h-cards without a photo, thanks to [Barry Frost](https://barryfrost.com/).
+
+### Security
+
+- Update nokogiri from 1.10.4 to 1.10.9.
+- Update json from 2.2.0 to 2.3.0.
+
## [0.1.0] - 2019-10-15
### Added
M Gemfile.lock => Gemfile.lock +6 -6
@@ 1,19 1,19 @@
PATH
remote: .
specs:
- indieweb-authorship (0.1.0)
+ indieweb-authorship (0.2.0)
microformats (~> 4.0, >= 4.1.0)
GEM
remote: https://rubygems.org/
specs:
diff-lcs (1.3)
- json (2.2.0)
- microformats (4.1.0)
- json (~> 2.1)
- nokogiri (~> 1.8, >= 1.8.3)
+ json (2.3.0)
+ microformats (4.2.0)
+ json (~> 2.2)
+ nokogiri (~> 1.10)
mini_portile2 (2.4.0)
- nokogiri (1.10.4)
+ nokogiri (1.10.9)
mini_portile2 (~> 2.4.0)
rake (12.3.1)
rspec (3.7.0)
M lib/indieweb/authorship/version.rb => lib/indieweb/authorship/version.rb +1 -1
@@ 1,5 1,5 @@
module Indieweb
module Authorship
- VERSION = "0.1.0"
+ VERSION = "0.2.0"
end
end