Skip to content

Commit 88f41ab

Browse files
committed
Release 3.2.0
1 parent dfebe76 commit 88f41ab

File tree

4 files changed

+33
-3
lines changed

4 files changed

+33
-3
lines changed

.github/workflows/release.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: release
2+
3+
on:
4+
push:
5+
tags:
6+
- v*
7+
8+
jobs:
9+
rubygems:
10+
if: github.repository == 'jgraichen/rails-rfc6570'
11+
runs-on: ubuntu-latest
12+
13+
permissions:
14+
contents: write
15+
id-token: write
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
- uses: ruby/setup-ruby@v1
20+
with:
21+
ruby-version: ruby
22+
bundler-cache: true
23+
- uses: rubygems/release-gem@v1

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,20 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Ch
99

1010
### New
1111

12-
- Add support for Rails 7.2
13-
1412
### Changes
1513

1614
### Fixes
1715

1816
### Breaks
1917

18+
## 3.2.0 - (2024-08-24)
19+
20+
---
21+
22+
### New
23+
24+
- Add support for Rails 7.2
25+
2026
## 3.1.0 - (2023-11-28)
2127

2228
---

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Rails::RFC6570
22

3+
[![Gem Version](https://img.shields.io/gem/v/rails-rfc6570?logo=ruby)](https://rubygems.org/gems/rails-rfc6570)
34
[![Build Status](https://img.shields.io/github/actions/workflow/status/jgraichen/rails-rfc6570/test.yml?logo=github)](https://github.com/jgraichen/rails-rfc6570/actions/workflows/test.yml)
45

56
Pragmatic access to your Rails routes as RFC6570 URI templates. Tested with Rails 6.1, 7.0, 7.1, 7.2 and Ruby 2.7, 3.0, 3.1, 3.2, 3.3.

lib/rails/rfc6570/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module Rails
44
module RFC6570
55
module VERSION
66
MAJOR = 3
7-
MINOR = 1
7+
MINOR = 2
88
PATCH = 0
99
STAGE = nil
1010

0 commit comments

Comments
 (0)