Skip to content

Commit

Permalink
Release 2.0.2
Browse files Browse the repository at this point in the history
Move rake to default group in Gemfile,
Shipit requires rake.
  • Loading branch information
miry committed Sep 2, 2022
1 parent fd6c3a6 commit 43bc802
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [2.0.2] - 2022-09-02
### Fixed
- Fix uninitialized instance variable warning.
([#50](https://github.com/Shopify/toxiproxy-ruby/pull/50), @casperisfine)

### Added
- Create a RELEASE.md with release instructions.
([#44](https://github.com/Shopify/toxiproxy-ruby/pull/44), @miry)
Expand All @@ -25,5 +31,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
([#42](https://github.com/Shopify/toxiproxy-ruby/pull/42), @miry)
- Reset http client on host changes. ([#43](https://github.com/Shopify/toxiproxy-ruby/pull/43), @miry)

[Unreleased]: https://github.com/Shopify/toxiproxy-ruby/compare/v2.0.1...HEAD
[Unreleased]: https://github.com/Shopify/toxiproxy-ruby/compare/v2.0.2...HEAD
[2.0.2]: https://github.com/Shopify/toxiproxy-ruby/compare/v2.0.1...v2.0.2
[2.0.1]: https://github.com/Shopify/toxiproxy-ruby/compare/v2.0.0...v2.0.1
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
source "https://rubygems.org"
gemspec

gem "rake"

group :test do
gem "minitest"
gem "rake"
gem "webmock"
end
11 changes: 3 additions & 8 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ and update links to commits compare in the bottom of the document.
Make sure all tests passed and gem could be build

```shell
$ toxiproxy-server
$ rake test
$ rake build
```
Expand All @@ -43,16 +44,10 @@ $ git tag -s "v$RELEASE_VERSION"

## Release Tag

On your local machine again, push your tag to the repository.
On your local machine again, push your commit and tag

```shell
$ git push origin "v$RELEASE_VERSION"
```

and only after push changes in `master`:

```shell
$ git push origin master
$ git push origin master --follow-tags
```

## Verify rubygems release
Expand Down
2 changes: 1 addition & 1 deletion lib/toxiproxy/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class Toxiproxy
VERSION = "2.0.1"
VERSION = "2.0.2"
end

0 comments on commit 43bc802

Please sign in to comment.