Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
excid3 committed Aug 8, 2023
1 parent 454b83d commit deb5d30
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 3.0.1

* Refactor to use block from `render_in` call to better support custom calendars

### 3.0.0

* Drop support for Rails 6.0 and earlier
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ GIT
PATH
remote: .
specs:
simple_calendar (3.0.0)
simple_calendar (3.0.1)
rails (>= 6.1)

GEM
Expand Down
1 change: 1 addition & 0 deletions gemfiles/rails_6_1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ gem "appraisal", github: "thoughtbot/appraisal"
gem "standard"
gem "puma"
gem "sqlite3"
gem "web-console", "~> 4.2", group: :development
gem "rails", "~> 6.1.0"

gemspec path: "../"
9 changes: 8 additions & 1 deletion gemfiles/rails_6_1.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ GIT
PATH
remote: ..
specs:
simple_calendar (3.0.0)
simple_calendar (3.0.1)
rails (>= 6.1)

GEM
Expand Down Expand Up @@ -76,6 +76,7 @@ GEM
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
ast (2.4.2)
bindex (0.8.1)
builder (3.2.4)
concurrent-ruby (1.2.2)
crass (1.0.6)
Expand Down Expand Up @@ -204,6 +205,11 @@ GEM
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.4.2)
web-console (4.2.0)
actionview (>= 6.0.0)
activemodel (>= 6.0.0)
bindex (>= 0.4.0)
railties (>= 6.0.0)
websocket-driver (0.7.5)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.5)
Expand All @@ -221,6 +227,7 @@ DEPENDENCIES
simple_calendar!
sqlite3
standard
web-console (~> 4.2)

BUNDLED WITH
2.4.16
1 change: 1 addition & 0 deletions gemfiles/rails_7_0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ gem "appraisal", github: "thoughtbot/appraisal"
gem "standard"
gem "puma"
gem "sqlite3"
gem "web-console", "~> 4.2", group: :development
gem "rails", "~> 7.0.0"

gemspec path: "../"
9 changes: 8 additions & 1 deletion gemfiles/rails_7_0.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ GIT
PATH
remote: ..
specs:
simple_calendar (3.0.0)
simple_calendar (3.0.1)
rails (>= 6.1)

GEM
Expand Down Expand Up @@ -82,6 +82,7 @@ GEM
minitest (>= 5.1)
tzinfo (~> 2.0)
ast (2.4.2)
bindex (0.8.1)
builder (3.2.4)
concurrent-ruby (1.2.2)
crass (1.0.6)
Expand Down Expand Up @@ -200,6 +201,11 @@ GEM
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.4.2)
web-console (4.2.0)
actionview (>= 6.0.0)
activemodel (>= 6.0.0)
bindex (>= 0.4.0)
railties (>= 6.0.0)
websocket-driver (0.7.5)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.5)
Expand All @@ -217,6 +223,7 @@ DEPENDENCIES
simple_calendar!
sqlite3
standard
web-console (~> 4.2)

BUNDLED WITH
2.4.16
1 change: 1 addition & 0 deletions gemfiles/rails_main.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ gem "appraisal", github: "thoughtbot/appraisal"
gem "standard"
gem "puma"
gem "sqlite3"
gem "web-console", "~> 4.2", group: :development
gem "rails", github: "rails/rails"

gemspec path: "../"
9 changes: 8 additions & 1 deletion gemfiles/rails_main.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,14 @@ GIT
PATH
remote: ..
specs:
simple_calendar (3.0.0)
simple_calendar (3.0.1)
rails (>= 6.1)

GEM
remote: http://rubygems.org/
specs:
ast (2.4.2)
bindex (0.8.1)
builder (3.2.4)
concurrent-ruby (1.2.2)
connection_pool (2.4.1)
Expand Down Expand Up @@ -223,6 +224,11 @@ GEM
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.4.2)
web-console (4.2.0)
actionview (>= 6.0.0)
activemodel (>= 6.0.0)
bindex (>= 0.4.0)
railties (>= 6.0.0)
webrick (1.8.1)
websocket-driver (0.7.5)
websocket-extensions (>= 0.1.0)
Expand All @@ -241,6 +247,7 @@ DEPENDENCIES
simple_calendar!
sqlite3
standard
web-console (~> 4.2)

BUNDLED WITH
2.4.16
2 changes: 1 addition & 1 deletion lib/simple_calendar/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module SimpleCalendar
VERSION = "3.0.0"
VERSION = "3.0.1"
end

0 comments on commit deb5d30

Please sign in to comment.