Skip to content

Commit 43bc802

Browse files
committed
Release 2.0.2
Move rake to default group in Gemfile, Shipit requires rake.
1 parent fd6c3a6 commit 43bc802

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [2.0.2] - 2022-09-02
10+
### Fixed
11+
- Fix uninitialized instance variable warning.
12+
([#50](https://github.com/Shopify/toxiproxy-ruby/pull/50), @casperisfine)
13+
814
### Added
915
- Create a RELEASE.md with release instructions.
1016
([#44](https://github.com/Shopify/toxiproxy-ruby/pull/44), @miry)
@@ -25,5 +31,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2531
([#42](https://github.com/Shopify/toxiproxy-ruby/pull/42), @miry)
2632
- Reset http client on host changes. ([#43](https://github.com/Shopify/toxiproxy-ruby/pull/43), @miry)
2733

28-
[Unreleased]: https://github.com/Shopify/toxiproxy-ruby/compare/v2.0.1...HEAD
34+
[Unreleased]: https://github.com/Shopify/toxiproxy-ruby/compare/v2.0.2...HEAD
35+
[2.0.2]: https://github.com/Shopify/toxiproxy-ruby/compare/v2.0.1...v2.0.2
2936
[2.0.1]: https://github.com/Shopify/toxiproxy-ruby/compare/v2.0.0...v2.0.1

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
source "https://rubygems.org"
22
gemspec
33

4+
gem "rake"
5+
46
group :test do
57
gem "minitest"
6-
gem "rake"
78
gem "webmock"
89
end

RELEASE.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ and update links to commits compare in the bottom of the document.
2626
Make sure all tests passed and gem could be build
2727

2828
```shell
29+
$ toxiproxy-server
2930
$ rake test
3031
$ rake build
3132
```
@@ -43,16 +44,10 @@ $ git tag -s "v$RELEASE_VERSION"
4344

4445
## Release Tag
4546

46-
On your local machine again, push your tag to the repository.
47+
On your local machine again, push your commit and tag
4748

4849
```shell
49-
$ git push origin "v$RELEASE_VERSION"
50-
```
51-
52-
and only after push changes in `master`:
53-
54-
```shell
55-
$ git push origin master
50+
$ git push origin master --follow-tags
5651
```
5752

5853
## Verify rubygems release

lib/toxiproxy/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
class Toxiproxy
2-
VERSION = "2.0.1"
2+
VERSION = "2.0.2"
33
end

0 commit comments

Comments
 (0)