Skip to content

Commit 633c01c

Browse files
authored
Update changelog 0.10 (#54)
* Update changelog * Add reminder in contributing to update changelog * Add gemspec metadata * Remove unused changelog keys
1 parent 67b5205 commit 633c01c

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
55

66
## [Unreleased]
77
### Added
8-
- Support for VRT 1.9
98

109
### Changed
1110

1211
### Removed
1312

13+
## [v0.10.0](https://github.com/bugcrowd/vrt-ruby/compare/v0.9.0...v0.10.0) - 2020-07-09
14+
### Added
15+
- Support for VRT 1.9
16+
1417
## [v0.9.0](https://github.com/bugcrowd/vrt-ruby/compare/v0.8.1...v0.9.0) - 2019-10-04
1518
### Added
1619
- Support for VRT 1.8

CONTRIBUTING.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@ When a new version of the VRT is released, we follow these steps:
1919
### Releasing new versions of the gem
2020
1. Merge all PRs targeted for inclusion in the release (without touching `version.rb`)
2121
2. Bump the version in `version.rb`
22-
3. Commit the version bump `git commit -m [tag name]` (where `tag name` is something like `v0.8.0`)
23-
4. Tag the commit `git tag [tag name]` (where `tag name` is something like `v0.8.0`)
24-
5. Push the tag and the commit `git push origin master --tag`
25-
6. Run `rake release`
22+
3. Update CHANGELOG with new version
23+
4. Commit the version bump `git commit -m [tag name]` (where `tag name` is something like `v0.8.0`)
24+
5. Tag the commit `git tag [tag name]` (where `tag name` is something like `v0.8.0`)
25+
6. Push the tag and the commit `git push origin master --tag`
26+
7. Run `rake release`
2627

2728

2829
If you need access to push the gem, create an account on rubygems (if you don't have one already) and then ask one of the existing owners to run `gem owner vrt --add <your-rubygems-email>`

vrt.gemspec

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,10 @@ Gem::Specification.new do |spec|
2323
spec.add_development_dependency 'rspec', '~> 3.6'
2424
# TODO: investigate why rubocop's jaro-winkler dependency fails to install in our alpine linux image
2525
spec.add_development_dependency 'rubocop', '0.56.0'
26+
spec.metadata = {
27+
'homepage_uri' => 'https://github.com/bugcrowd/vrt-ruby',
28+
'changelog_uri' => 'https://github.com/bugcrowd/vrt-ruby/blob/master/CHANGELOG.md',
29+
'source_code_uri' => 'https://github.com/bugcrowd/vrt-ruby',
30+
'bug_tracker_uri' => 'https://github.com/bugcrowd/vrt-ruby/issues'
31+
}
2632
end

0 commit comments

Comments
 (0)