From c23e736a955b5d2c19c7a6a47dd6a0a13786581f Mon Sep 17 00:00:00 2001 From: Jonathan Tron Date: Fri, 15 Apr 2022 13:53:10 +0200 Subject: [PATCH] Bump version to 1.2.0 --- History.md | 5 +++-- README.md | 12 ++++++------ lib/sequel_rails/version.rb | 2 +- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/History.md b/History.md index 403ca46..27f7de1 100644 --- a/History.md +++ b/History.md @@ -1,6 +1,7 @@ -dev -=== +1.2.0 (2022-04-15) +================== +* Migrate CI to Github actions (Jonathan Tron) * Add a new sequel-rails hook: `after_new_connection` which sets `Sequel`'s `after_connect`, and is triggered for every new connection (@kamilpavlicko) diff --git a/README.md b/README.md index 59ea947..688d974 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ This gem provides the railtie that allows [sequel](http://github.com/jeremyevans/sequel) to hook into -[Rails (4.x and 5.x)](http://github.com/rails/rails) and thus behave like a +[Rails (5.2.x, 6.x, 7.x)](http://github.com/rails/rails) and thus behave like a rails framework component. Just like activerecord does in rails, [sequel-rails](http://github.com/talentbox/sequel-rails) uses the railtie API to hook into rails. The two are actually hooked into rails almost identically. @@ -27,7 +27,7 @@ Since January 2013, we've become the official maintainers of the gem after Using sequel-rails ================== -Using sequel with Rails (4.x or 5.x) requires a couple minor changes. +Using sequel with Rails (5.2.x, 6.x, 7.x) requires a couple minor changes. First, add the following to your Gemfile (after the `Rails` lines): @@ -387,15 +387,15 @@ Note on Patches/Pull Requests The sequel-rails team ===================== -* Jonathan Tron (JonathanTron) - Current maintainer -* Joseph Halter (JosephHalter) - Current maintainer +* Jonathan Tron (@JonathanTron) - Current maintainer +* Joseph Halter (@JosephHalter) - Current maintainer Previous maintainer =================== [Original project](https://github.com/brasten/sequel-rails): -* Brasten Sager (brasten) - Project creator +* Brasten Sager (@brasten) - Project creator Contributors ============ @@ -459,4 +459,4 @@ The [dm-rails](http://github.com/datamapper/dm-rails) team wrote most of the ori Copyright ========= -Copyright (c) 2010-2013 The sequel-rails team. See [LICENSE](http://github.com/brasten/sequel-rails/blob/master/LICENSE) for details. +Copyright (c) 2010-2022 The sequel-rails team. See [LICENSE](http://github.com/brasten/sequel-rails/blob/master/LICENSE) for details. diff --git a/lib/sequel_rails/version.rb b/lib/sequel_rails/version.rb index d485c55..370682e 100644 --- a/lib/sequel_rails/version.rb +++ b/lib/sequel_rails/version.rb @@ -1,3 +1,3 @@ module SequelRails - VERSION = '1.1.1'.freeze + VERSION = '1.2.0'.freeze end