Skip to content

Commit 575985f

Browse files
committed
Bump version to 1.3.0
1 parent aa771bb commit 575985f

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 1.3.0 (5/10/2025)
2+
* Correctly handle 3xx responses with no Location header (resolves [#79](https://github.com/arkadiyt/ssrf_filter/issues/79)) ([arkadiyt](https://github.com/arkadiyt/ssrf_filter/pull/80))
3+
14
### 1.2.0 (11/7/2024)
25
* Drop support for ruby 2.6, add support for ruby 3.3 ([arkadiyt](https://github.com/arkadiyt/ssrf_filter/pull/73))
36
* Stop patching OpenSSL (resolves [#72](https://github.com/arkadiyt/ssrf_filter/issues/72)) ([arkadiyt](https://github.com/arkadiyt/ssrf_filter/pull/73))

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This gem provides a safe and easy way to fetch content from user-submitted urls.
2626
1) Add the gem to your Gemfile:
2727

2828
```ruby
29-
gem 'ssrf_filter', '~> 1.2.0'
29+
gem 'ssrf_filter', '~> 1.3.0'
3030
```
3131

3232
2) In your code:

lib/ssrf_filter/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
class SsrfFilter
4-
VERSION = '1.2.0'
4+
VERSION = '1.3.0'
55
end

0 commit comments

Comments
 (0)