Skip to content

Commit

Permalink
chore(release): version 2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bethesque committed Sep 7, 2017
1 parent d875079 commit 0098177
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 6 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
Do this to generate your change history
<a name="v2.4.1"></a>
### v2.4.1 (2017-09-07)

$ git log --pretty=format:' * %h - %s (%an, %ad)'
#### Bug Fixes

* allow resource identifiers to contain escaped forward slashes ([d875079](/../../commit/d875079))

<a name="v2.4.0"></a>
### v2.4.0 (2017-07-31)
* 3a03f41 - fix(publish verification result): Fix Location header for newly created resource (Beth Skurrie, Mon Jul 31 10:49:37 2017 +1000)
* 3b0f390 - feat(pacticipant labels): Add HAL link to pacticipants resource to find pacticipants by label. (Beth Skurrie, Mon Jul 24 08:17:36 2017 +1000)
* 588d2ad - fix(pacticipant and pacticipants resources): Add correctly capitalised and namespaced properties and relations. Added deprecation warnings to existing incorrect properties and relations. (Beth Skurrie, Mon Jul 24 08:14:52 2017 +1000)
Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
1. Increment the version in `./lib/pact_broker/version.rb`
2. Update the `CHANGELOG.md` using:

$ git log --pretty=format:' * %h - %s (%an, %ad)'
$ bundle exec rake generate_changelog

3. Add files to git

Expand Down
2 changes: 1 addition & 1 deletion lib/pact_broker/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module PactBroker
VERSION = '2.4.0'
VERSION = '2.4.1'
end
6 changes: 4 additions & 2 deletions pact_broker.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ Gem::Specification.new do |gem|
gem.add_development_dependency 'mysql2', '~>0.3.15'
gem.add_development_dependency 'webmock', '~>2.3'
gem.add_development_dependency 'rspec', '~>3.0'
gem.add_development_dependency 'rspec-its'
gem.add_development_dependency 'database_cleaner'
gem.add_development_dependency 'rspec-its', '~>1.2'
gem.add_development_dependency 'database_cleaner', '~>1.6'
gem.add_development_dependency 'pg'
gem.add_development_dependency 'conventional-changelog', '~>1.3'

end
6 changes: 6 additions & 0 deletions tasks/release.rake
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
require 'conventional_changelog'

task :generate_changelog do
require 'pact_broker/version'
ConventionalChangelog::Generator.new.generate! version: "v#{PactBroker::VERSION}"
end

0 comments on commit 0098177

Please sign in to comment.