diff --git a/CHANGELOG.md b/CHANGELOG.md index aeacc5dd..b8f3da83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Gemfile.lock b/Gemfile.lock index eca10712..b28da57b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -10,7 +10,7 @@ GIT PATH remote: . specs: - simple_calendar (3.0.0) + simple_calendar (3.0.1) rails (>= 6.1) GEM diff --git a/gemfiles/rails_6_1.gemfile b/gemfiles/rails_6_1.gemfile index e8b0539c..f619fb86 100644 --- a/gemfiles/rails_6_1.gemfile +++ b/gemfiles/rails_6_1.gemfile @@ -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: "../" diff --git a/gemfiles/rails_6_1.gemfile.lock b/gemfiles/rails_6_1.gemfile.lock index 79ee8d34..6b823b0f 100644 --- a/gemfiles/rails_6_1.gemfile.lock +++ b/gemfiles/rails_6_1.gemfile.lock @@ -10,7 +10,7 @@ GIT PATH remote: .. specs: - simple_calendar (3.0.0) + simple_calendar (3.0.1) rails (>= 6.1) GEM @@ -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) @@ -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) @@ -221,6 +227,7 @@ DEPENDENCIES simple_calendar! sqlite3 standard + web-console (~> 4.2) BUNDLED WITH 2.4.16 diff --git a/gemfiles/rails_7_0.gemfile b/gemfiles/rails_7_0.gemfile index fb5b95b8..24d09d7e 100644 --- a/gemfiles/rails_7_0.gemfile +++ b/gemfiles/rails_7_0.gemfile @@ -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: "../" diff --git a/gemfiles/rails_7_0.gemfile.lock b/gemfiles/rails_7_0.gemfile.lock index 3be0b15a..5cde4989 100644 --- a/gemfiles/rails_7_0.gemfile.lock +++ b/gemfiles/rails_7_0.gemfile.lock @@ -10,7 +10,7 @@ GIT PATH remote: .. specs: - simple_calendar (3.0.0) + simple_calendar (3.0.1) rails (>= 6.1) GEM @@ -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) @@ -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) @@ -217,6 +223,7 @@ DEPENDENCIES simple_calendar! sqlite3 standard + web-console (~> 4.2) BUNDLED WITH 2.4.16 diff --git a/gemfiles/rails_main.gemfile b/gemfiles/rails_main.gemfile index c26523c7..07a4e307 100644 --- a/gemfiles/rails_main.gemfile +++ b/gemfiles/rails_main.gemfile @@ -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: "../" diff --git a/gemfiles/rails_main.gemfile.lock b/gemfiles/rails_main.gemfile.lock index b89146b1..d3c851b9 100644 --- a/gemfiles/rails_main.gemfile.lock +++ b/gemfiles/rails_main.gemfile.lock @@ -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) @@ -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) @@ -241,6 +247,7 @@ DEPENDENCIES simple_calendar! sqlite3 standard + web-console (~> 4.2) BUNDLED WITH 2.4.16 diff --git a/lib/simple_calendar/version.rb b/lib/simple_calendar/version.rb index 3d72e40b..f9be7cb4 100644 --- a/lib/simple_calendar/version.rb +++ b/lib/simple_calendar/version.rb @@ -1,3 +1,3 @@ module SimpleCalendar - VERSION = "3.0.0" + VERSION = "3.0.1" end