M CHANGELOG.md => CHANGELOG.md +5 -0
@@ 6,6 6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
+## [0.2.1] - 2020-08-03
+
+### Changed
+- Update gemspec links to point to https://code.deeden.co.uk/
+
## [0.2.0] - 2020-05-11
### Security
M README.md => README.md +2 -2
@@ 69,7 69,7 @@ To install this gem onto your local machine, run `bundle exec rake install`.
## Contributing
-Bug reports and pull requests are welcome on GitHub at https://github.com/srushe/indieweb-post_types-identifier-scrobble. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
+Bug reports can be added at [https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble/issues](https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble/issues), while patches are welcome at [https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble/patches](https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble/patches).
## License
@@ 77,4 77,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
## Code of Conduct
-Everyone interacting in the Indieweb::PostTypes::Scrobble project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/srushe/indieweb-post_types-identifier-scrobble/blob/master/CODE_OF_CONDUCT.md).
+This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.<
\ No newline at end of file
M indieweb-post_types-identifier-scrobble.gemspec => indieweb-post_types-identifier-scrobble.gemspec +4 -4
@@ 11,13 11,13 @@ Gem::Specification.new do |spec|
spec.summary = %q{Identify IndieWeb Microformats 2 posts as scrobbles.}
spec.description = %q{IndieWeb Scrobble Post Type Discovery for Microformats 2 JSON.}
- spec.homepage = "https://github.com/srushe/indieweb-post_types-identifier-scrobble"
+ spec.homepage = "https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble"
spec.license = "MIT"
spec.metadata = {
- 'bug_tracker_uri' => 'https://github.com/srushe/indieweb-post_types-identifier-scrobble/issues',
- 'changelog_uri' => 'https://github.com/srushe/indieweb-post_types-identifier-scrobble/blob/master/CHANGELOG.md',
- 'homepage_uri' => 'https://github.com/srushe/indieweb-post_types-identifier-scrobble/'
+ 'bug_tracker_uri' => 'https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble/issues',
+ 'changelog_uri' => 'https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble/changelog',
+ 'homepage_uri' => 'https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble/'
}
spec.files = `git ls-files -z`.split("\x0").reject do |f|
M lib/indieweb/post_types/identifier/scrobble/version.rb => lib/indieweb/post_types/identifier/scrobble/version.rb +1 -1
@@ 2,7 2,7 @@ module Indieweb
module PostTypes
module Identifier
module Scrobble
- VERSION = "0.2.0"
+ VERSION = "0.2.1"
end
end
end