Skip to content

Commit

Permalink
Prepare 7.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
aried3r committed Jan 21, 2022
1 parent b799a68 commit a7eafec
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 16 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

## [Unreleased](https://github.com/rpush/rpush/tree/HEAD)

[Full Changelog](https://github.com/rpush/rpush/compare/v7.0.0...HEAD)

## [v7.0.0](https://github.com/rpush/rpush/tree/HEAD)

[Full Changelog](https://github.com/rpush/rpush/compare/v6.0.1...v7.0.0)

**Merged pull requests:**

- Test with Ruby 3.1 [\#632](https://github.com/rpush/rpush/pull/632) ([aried3r](https://github.com/aried3r))
- Resolves Rails 7 Time.now.to\_s deprecation warning [\#630](https://github.com/rpush/rpush/pull/630) ([gregblake](https://github.com/gregblake))
- Adds Rails 7 Support [\#629](https://github.com/rpush/rpush/pull/629) ([gregblake](https://github.com/gregblake))
- Test with Rails 7.0.0.alpha2 [\#626](https://github.com/rpush/rpush/pull/626) ([aried3r](https://github.com/aried3r))

**Breaking:**

- Drop support for Ruby 2.3 [\#631](https://github.com/rpush/rpush/pull/631) ([aried3r](https://github.com/aried3r))

## [v6.0.1](https://github.com/rpush/rpush/tree/v6.0.1) (2021-10-08)

[Full Changelog](https://github.com/rpush/rpush/compare/v6.0.0...v6.0.1)
Expand Down
30 changes: 16 additions & 14 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rpush (6.0.1)
rpush (7.0.0)
activesupport (>= 5.2)
jwt (>= 1.5.6)
multi_json (~> 1.0)
Expand Down Expand Up @@ -45,7 +45,7 @@ GEM
byebug (11.0.1)
codeclimate-test-reporter (1.0.7)
simplecov
concurrent-ruby (1.1.8)
concurrent-ruby (1.1.9)
connection_pool (2.2.5)
crass (1.0.6)
database_cleaner (1.7.0)
Expand All @@ -54,16 +54,17 @@ GEM
erubi (1.10.0)
hkdf (0.3.0)
http-2 (0.11.0)
i18n (1.8.10)
i18n (1.8.11)
concurrent-ruby (~> 1.0)
jaro_winkler (1.5.4)
json (2.3.1)
jwt (2.2.3)
loofah (2.9.1)
jwt (2.3.0)
loofah (2.13.0)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
method_source (1.0.0)
minitest (5.14.4)
mini_portile2 (2.7.1)
minitest (5.15.0)
modis (4.0.0)
activemodel (>= 5.2)
activesupport (>= 5.2)
Expand All @@ -77,29 +78,30 @@ GEM
connection_pool (~> 2.2)
net-http2 (0.18.4)
http-2 (~> 0.11)
nokogiri (1.11.3-x86_64-darwin)
nokogiri (1.13.1)
mini_portile2 (~> 2.7.0)
racc (~> 1.4)
parallel (1.19.1)
parser (2.7.0.2)
ast (~> 2.4.0)
pg (1.2.3)
racc (1.5.2)
racc (1.6.0)
rack (2.2.3)
rack-test (1.1.0)
rack (>= 1.0, < 3)
rails-dom-testing (2.0.3)
activesupport (>= 4.2.0)
nokogiri (>= 1.6)
rails-html-sanitizer (1.3.0)
rails-html-sanitizer (1.4.2)
loofah (~> 2.3)
railties (6.1.3.2)
actionpack (= 6.1.3.2)
activesupport (= 6.1.3.2)
method_source
rake (>= 0.8.7)
thor (~> 1.0)
rainbow (3.0.0)
rake (13.0.3)
rainbow (3.1.1)
rake (13.0.6)
redis (4.2.5)
rexml (3.2.5)
rpush-redis (1.2.0)
Expand Down Expand Up @@ -135,15 +137,15 @@ GEM
simplecov-html (0.10.2)
sqlite3 (1.4.0)
stackprof (0.2.12)
thor (1.1.0)
thor (1.2.1)
timecop (0.9.1)
tzinfo (2.0.4)
concurrent-ruby (~> 1.0)
unicode-display_width (1.6.1)
webpush (1.1.0)
hkdf (~> 0.2)
jwt (~> 2.0)
zeitwerk (2.4.2)
zeitwerk (2.5.3)

PLATFORMS
ruby
Expand All @@ -168,4 +170,4 @@ DEPENDENCIES
timecop

BUNDLED WITH
2.2.17
2.2.32
4 changes: 2 additions & 2 deletions lib/rpush/version.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module Rpush
module VERSION
MAJOR = 6
MAJOR = 7
MINOR = 0
TINY = 1
TINY = 0
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".").freeze
Expand Down

0 comments on commit a7eafec

Please sign in to comment.