Skip to content

Commit

Permalink
Merge pull request #310 from alphagov/drop-ruby-3-0
Browse files Browse the repository at this point in the history
  • Loading branch information
MuriloDalRi authored Jun 4, 2024
2 parents a6ad40d + 522d6d8 commit b523d41
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby: ['3.0', 3.1, 3.2]
ruby: [3.1, 3.2]
# Test against multiple Rails versions
gemfile: [rails_6, rails_7]
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.5
3.1.5
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Unreleased
# 6.11.0

* Drop support for Ruby 2.7.
* Drop support for Ruby 3.0

# 6.10.0

Expand Down
2 changes: 1 addition & 1 deletion govuk_admin_template.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
gem.files = Dir["{app,config,lib}/**/*"] + Dir["*.md"] + ["LICENCE.txt"]
gem.require_paths = %w[lib]

gem.required_ruby_version = ">= 3.0"
gem.required_ruby_version = ">= 3.1"

gem.add_dependency "bootstrap-sass", "~> 3.4"
gem.add_dependency "jquery-rails", "~> 4.3"
Expand Down
2 changes: 1 addition & 1 deletion lib/govuk_admin_template/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module GovukAdminTemplate
VERSION = "6.10.0".freeze
VERSION = "6.11.0".freeze
end

0 comments on commit b523d41

Please sign in to comment.