Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/release-gem.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name:

on:
workflow_dispatch:

jobs:
release-gem:
name: Release gem on RubyGems.org
runs-on: ubuntu-latest

permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
contents: write # IMPORTANT: this permission is required for `rake release` to push the release tag

steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: 3.1.6
- uses: rubygems/release-gem@v1
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# v1.1.0

- Support graphql-ruby 2.x [#32](https://github.com/increments/graphql-kaminari_connection/pull/32)
- Support only currently living ruby versions [#33](https://github.com/increments/graphql-kaminari_connection/pull/33)

# v1.0.0

- Change support ruby version [#26](https://github.com/increments/graphql-kaminari_connection/pull/26)
- Work with graphql-ruby 1.9.0 [#20](https://github.com/increments/graphql-kaminari_connection/pull/20)

# v0.1.0
2 changes: 1 addition & 1 deletion lib/graphql/kaminari_connection/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module GraphQL
module KaminariConnection
VERSION = '1.0.0'
VERSION = '1.1.0'
end
end
Loading