Skip to content

Commit

Permalink
Bump version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcotc committed Sep 14, 2021
1 parent 7f802d9 commit bee3dfb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
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).

## 1.2.0
## Fixed
- Support environments with string literals frozen by default. (thanks @danielmorrison)

## 1.1.0
## Changed
- Removed dependency on `git-version-bump` gem for versioning. `rack-brotli` now only depends on `rack` and `brotli`.
Expand Down
2 changes: 1 addition & 1 deletion lib/rack/brotli/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module Rack
module Brotli
class Version
def self.to_s
'1.1.0'
'1.2.0'
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion test/version_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@

describe Rack::Brotli::Version do
it '#to_s' do
_(Rack::Brotli::Version.to_s).must_equal('1.1.0')
_(Rack::Brotli::Version.to_s).must_equal('1.2.0')
end
end

0 comments on commit bee3dfb

Please sign in to comment.