Compare commits

..

4 commits

4 changed files with 10 additions and 6 deletions

View file

@ -8,7 +8,7 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1 - uses: ruby/setup-ruby@v1
with: with:
ruby-version: 3.4.4 ruby-version: 4.0.0
- name: Install dependencies - name: Install dependencies
run: bundle install --jobs 4 --retry 3 run: bundle install --jobs 4 --retry 3
- name: Run Danger - name: Run Danger
@ -21,10 +21,10 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
ruby-version: [3.4.4, 3.3.8, 3.2.8, 3.1.7] ruby-version: [4.0.0, 3.4.8, 3.3.10, 3.2.9]
grape-version: ['~> 2.3.0', '~> 3.0'] grape-version: ['~> 3.0.0', '~> 2.3.0']
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1 - uses: ruby/setup-ruby@v1
with: with:
ruby-version: ${{ matrix.ruby-version }} ruby-version: ${{ matrix.ruby-version }}

View file

@ -1,5 +1,9 @@
## Changelog ## Changelog
### 2.0.2 (Next)
* Your contribution here.
### 2.0.1 (2025/12/08) ### 2.0.1 (2025/12/08)
* [#92](https://github.com/ruby-grape/grape-active_model_serializers/pull/92): Fix: accept nil serializer - [@mateusnava](https://github.com/mateusnava). * [#92](https://github.com/ruby-grape/grape-active_model_serializers/pull/92): Fix: accept nil serializer - [@mateusnava](https://github.com/mateusnava).

View file

@ -2,7 +2,7 @@ source 'https://rubygems.org'
gemspec gemspec
case version = ENV['GRAPE_VERSION'] || '~> 2.3.0' case version = ENV['GRAPE_VERSION'] || '~> 3.0.0'
when 'HEAD' when 'HEAD'
gem 'grape', github: 'intridea/grape' gem 'grape', github: 'intridea/grape'
else else

View file

@ -1,5 +1,5 @@
module Grape module Grape
module ActiveModelSerializers module ActiveModelSerializers
VERSION = '2.0.1'.freeze VERSION = '2.0.2'.freeze
end end
end end