Skip to content

Commit

Permalink
bump version 0.2.1 → 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mugimaru committed Jul 19, 2022
1 parent 951c71c commit 740099a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.1
current_version = 0.3.0
commit = True
tag = True
tag_name = {new_version}
Expand All @@ -8,3 +8,7 @@ message = bump version {current_version} → {new_version}
[bumpversion:file:lib/http_health_check/version.rb]

[bumpversion:file:README.md]

[bumpversion:file:Gemfile.lock]
search = http_health_check ({current_version})
replace = http_health_check ({new_version})
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG.md

## 0.3.0 (unreleased)
## 0.3.0 (2022-07-19)

Features:

Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
http_health_check (0.2.1)
http_health_check (0.3.0)
rack (~> 2.0)
webrick

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ HttpHealthCheck is built with kubernetes health probes in mind, but it can be us
Add this line to your application's Gemfile:

```ruby
gem 'http_health_check', '~> 0.2.1'
gem 'http_health_check', '~> 0.3.0'
```

And then execute:
Expand Down
2 changes: 1 addition & 1 deletion lib/http_health_check/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module HttpHealthCheck
VERSION = '0.2.1'
VERSION = '0.3.0'
end

0 comments on commit 740099a

Please sign in to comment.