Skip to content

Commit

Permalink
Upgrade to Decidim v0.27 (#9)
Browse files Browse the repository at this point in the history
* Update Ruby and Decidim

* Rubocopify
  • Loading branch information
tramuntanal committed Dec 28, 2022
1 parent 5688046 commit 1941122
Show file tree
Hide file tree
Showing 17 changed files with 373 additions and 323 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linters.yml
Expand Up @@ -9,7 +9,7 @@ on:
pull_request:

env:
RUBY_VERSION: 2.7.7
RUBY_VERSION: 3.1.3

jobs:
test-report:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Expand Up @@ -9,8 +9,7 @@ on:
pull_request:

env:
RUBY_VERSION: 2.7.7

RUBY_VERSION: 3.1.3
jobs:
test-module:
runs-on: ubuntu-latest
Expand Down
7 changes: 1 addition & 6 deletions .rubocop.yml
Expand Up @@ -65,12 +65,7 @@ AllCops:
# If a value is specified for TargetRubyVersion then it is used.
# Else if .ruby-version exists and it contains an MRI version it is used.
# Otherwise we fallback to the oldest officially supported Ruby version (2.0).
TargetRubyVersion: 2.7

RSpec:
Patterns:
- "(?:^|/)spec/"
- "(?:^|/)test/"
# TargetRubyVersion: 3.1

# Indent private/protected/public as deep as method definitions
Layout/AccessModifierIndentation:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
@@ -1 +1 @@
2.7.7
3.1.3
4 changes: 4 additions & 0 deletions CHANGELOG.MD
@@ -1,5 +1,9 @@
# CHANGELOG

## v0.27.1.0
- Upgrade to use Ruby 3.1.3, but be compatible with > 3.0
- Upgrade to Decidim v0.27.1

## v0.26.2.5
- FEATURE: Allow extra random columns in CSV and persist them in an `extras` column of type `jsonb` but as an array.
- Upgrade to use Ruby 2.7.7, but be still compatible with 2.7.5
Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Expand Up @@ -14,11 +14,11 @@ gemspec

group :development, :test do
gem "bootsnap", require: false
gem "decidim", "~> 0.26.2", require: true
gem "decidim", "~> 0.27.1", require: true
gem "letter_opener_web"
gem "listen"
end

group :development do
gem "rubocop", "~> 0.92.0"
gem "rubocop", "~> 1.28.0"
end

0 comments on commit 1941122

Please sign in to comment.