From acb5a90536437b7e993ce83d57a82af59950a4ab Mon Sep 17 00:00:00 2001 From: Arkadiy Tetelman Date: Thu, 7 Nov 2024 19:26:22 -0800 Subject: [PATCH] Bump version to 1.2.0 (#75) --- CHANGELOG.md | 6 +++--- README.md | 2 +- lib/ssrf_filter/version.rb | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84a410b..47ed28c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ -### main -* Drop support for ruby 2.6, add support for ruby 3.3 -* Stop patching OpenSSL (resolves https://github.com/arkadiyt/ssrf_filter/issues/72) (([arkadiyt](https://github.com/arkadiyt/ssrf_filter/pull/73))) +### 1.2.0 (11/7/2024) +* Drop support for ruby 2.6, add support for ruby 3.3 ([arkadiyt](https://github.com/arkadiyt/ssrf_filter/pull/73)) +* Stop patching OpenSSL (resolves [#72](https://github.com/arkadiyt/ssrf_filter/issues/72)) ([arkadiyt](https://github.com/arkadiyt/ssrf_filter/pull/73)) ### 1.1.2 (9/11/2023) * Fix a bug introduced in 1.1.0 when reading non-streaming bodies from responses ([mshibuya](https://github.com/arkadiyt/ssrf_filter/pull/60)) diff --git a/README.md b/README.md index 3ddcab3..e77759a 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ This gem provides a safe and easy way to fetch content from user-submitted urls. 1) Add the gem to your Gemfile: ```ruby -gem 'ssrf_filter', '~> 1.1.2' +gem 'ssrf_filter', '~> 1.2.0' ``` 2) In your code: diff --git a/lib/ssrf_filter/version.rb b/lib/ssrf_filter/version.rb index 5eb5dc5..f1f3e9c 100644 --- a/lib/ssrf_filter/version.rb +++ b/lib/ssrf_filter/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true class SsrfFilter - VERSION = '1.1.2' + VERSION = '1.2.0' end