Skip to content

Commit

Permalink
Merge pull request #7 from Itxaka/fix_minor
Browse files Browse the repository at this point in the history
Fix readme, bump version to 1.0.1
  • Loading branch information
Itxaka authored Oct 26, 2018
2 parents 74dc3d4 + ad71286 commit a63e22e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [1.0.1](https://github.com/crowbar/crowbar-validate-databags/releases/tag/v1.0.1) - 26-10-2018

* BUGFIX
* Fix readme instructions to clear up the release process (@itxaka)
* Fix homepage url (@itxaka)

## [1.0.0](https://github.com/crowbar/crowbar-validate-databags/releases/tag/v1.0.0) - 23-10-2018

* Initial release (@itxaka)
Expand Down
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,19 @@ versions) and for raising the version number, you can find the version in
`lib/crowbar/validate/databags/version.rb`.

After merging the pull request it's time to build the rubygem and to release it.
This is done automatically by Travis once a tag is pushed.
This is done automatically by Travis once a git tag is pushed or you can manually run `bundle exec rake release`
on the master branch in order to create the tag (according to `lib/crowbar/validate/databags/version.rb`)
and push the gem at the same time.

Last, go to https://github.com/crowbar/crowbar-validate-databags/releases/new and select
the pushed tag. Then you should put the latest changelog into the description
```
$ bundle exec rake release
crowbar-validate-databags 1.0.0 built to pkg/crowbar-validate-databags-1.0.0.gem.
Tagged v1.0.0.
Pushed git commits and tags.
Pushed crowbar-validate-databags 1.0.0 to rubygems.org
```


Last, go to https://github.com/crowbar/crowbar-validate-databags/releases and edit the new release.
Then you should put the latest changelog into the description
form field.
2 changes: 1 addition & 1 deletion crowbar-validate-databags.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
spec.email = ["[email protected]", "[email protected]"]

spec.summary = %q{Validates databags of crowbar.}
spec.homepage = "http://github.com/itxaka/crowbar-validate-databags"
spec.homepage = "http://github.com/crowbar/crowbar-validate-databags"
spec.license = "GPL-2.0"

spec.files = `git ls-files -z`.split("\x0").reject do |f|
Expand Down
2 changes: 1 addition & 1 deletion lib/crowbar/validate/databags/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Crowbar
module Validate
module Databags
VERSION = "1.0.0"
VERSION = "1.0.1"
end
end
end

0 comments on commit a63e22e

Please sign in to comment.