-
-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drop legacy dependencies support #77
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,11 @@ | ||
appraise "ar50" do | ||
gem "activerecord", "~> 5.0.0" | ||
end | ||
|
||
appraise "ar51" do | ||
gem "activerecord", "~> 5.1.0" | ||
end | ||
|
||
appraise "ar52" do | ||
gem "activerecord", "~> 5.2.0" | ||
end | ||
|
||
appraise "ar60" do | ||
gem "activerecord", "~> 6.0.0.rc1" | ||
end | ||
|
||
appraise "ar61" do | ||
gem "activerecord", "~> 6.1.0" | ||
end | ||
|
||
appraise "ar70" do | ||
gem "activerecord", "~> 7.0.0" | ||
end | ||
|
||
appraise "rgeo3" do | ||
gem "activerecord", "~> 7.0.0" | ||
gem "rgeo", "~> 3.0.0" | ||
appraise "ar71" do | ||
gem "activerecord", "~> 7.1.0" | ||
end | ||
|
||
appraise "rgeo1" do | ||
gem "activerecord", "~> 5.2.0" | ||
gem "rgeo", "~> 1.0" | ||
appraise "ar72" do | ||
gem "activerecord", "~> 7.2.0" | ||
end |
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
source "https://rubygems.org" | ||
|
||
gem "activerecord", "~> 5.0.0" | ||
gem "activerecord", "~> 7.1.0" | ||
|
||
gemspec path: "../" |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
source "https://rubygems.org" | ||
|
||
gem "activerecord", "~> 5.1.0" | ||
gem "activerecord", "~> 7.2.0" | ||
|
||
gemspec path: "../" |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
module RGeo | ||
module ActiveRecord | ||
VERSION = "7.0.1" | ||
VERSION = "8.0.0" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @BuonOmo will we have to synchronize this with the postgis adapter PR that you have up? Do we need a major version bump here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. well since there is no change in the codebase, I don't think we have to do anything. TBH I would even consider not bumping major. |
||
end | ||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
major version bumped because of this approach. I can bump minor and change
8.0+
to7.1+