Skip to content

Commit 99dbc43

Browse files
committed
Release 3.5.1
1 parent 3aa1e74 commit 99dbc43

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

CHANGELOG.md

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

1414
### Fixes
1515

16-
- Fix up `*_rfc6570` to support a Hash argument. Required when calling template from Rails Engine in the main app.
17-
1816
### Breaks
1917

18+
## 3.5.1 - (2025-09-28)
19+
20+
---
21+
22+
### Fixes
23+
24+
- Fix up `rfc6570` path helpers to accept hash argument required when calling template from Rails Engine in the main app.
25+
2026
## 3.5.0 - (2025-09-26)
2127

2228
---

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55

66
Pragmatic access to your Rails routes as RFC6570 URI templates.
77

8-
Tested with Rails 6.1, 7.0, 7.1, 7.2 and Ruby 2.7, 3.0, 3.1, 3.2, 3.3, and 3.4.
8+
Tested with Rails 6.1, 7.0, 7.1, 7.2, 8.0 and Ruby 2.7, 3.0, 3.1, 3.2, 3.3, and 3.4.
99

1010
## Installation
1111

1212
Add this line to your application's Gemfile:
1313

1414
```ruby
15-
gem 'rails-rfc6570', '~> 3.0'
15+
gem 'rails-rfc6570', '~> 3.5'
1616
```
1717

1818
## Usage
@@ -92,7 +92,7 @@ end
9292

9393
This gem does not support every construct possible with route matchers especially nested groups cannot be expressed in URI templates. They are expanded into separate groups. It also makes some assumptions when converting splat matchers like swallowing a multiple slashes. An error is raised when routes with OR-clauses are tried to be converted.
9494

95-
You can also combine **Rails::RFC6570** with [rack-link_headers](https://github.com/jgraichen/rack-link_headers) and provide hypermedia linking everywhere!
95+
You can also combine **Rails::RFC6570** with [`rack-link_headers`](https://github.com/jgraichen/rack-link_headers) and provide hypermedia linking everywhere!
9696

9797
```ruby
9898
class UserController < ApplicationController

lib/rails/rfc6570/version.rb

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

1111
STRING = [MAJOR, MINOR, PATCH, STAGE].compact.join('.').freeze

0 commit comments

Comments
 (0)