From b4c446aea757ffa3d3b4a8551477375031a38ffd Mon Sep 17 00:00:00 2001 From: Peter Cai Date: Sun, 4 Sep 2022 10:49:08 -0400 Subject: [PATCH] prepare 2.13.1 release --- CHANGELOG.md | 4 ++++ README.md | 6 ++---- lib/savon/version.rb | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7040fb97..2ee250b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ * Add your PR changelog line here +## 2.13.1 (2022-09-04) + +* Fix: [#977](https://github.com/savonrb/savon/pull/977) Prevent "xmlns:xmlns" namespace but allow "xmlns" namespace. + ## 2.13.0 (2022-08-03) * Drop support for ruby 2.6 and below. Added Ruby 3.0 and 3.1 to test matrix. diff --git a/README.md b/README.md index 80c686b4..4056573f 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Heavy metal SOAP client -[Documentation](https://www.rubydoc.info/gems/savon/) | [Support](https://stackoverflow.com/questions/tagged/savon) | +[Documentation](https://www.rubydoc.info/gems/savon/) | [Support](https://stackoverflow.com/questions/tagged/savon) | [Mailing list](https://groups.google.com/forum/#!forum/savonrb) | [Twitter](http://twitter.com/savonrb) [![Ruby](https://github.com/savonrb/savon/actions/workflows/ci.yml/badge.svg)](https://github.com/savonrb/savon/actions/workflows/ci.yml) @@ -22,7 +22,7 @@ $ gem install savon or add it to your Gemfile like this: ``` -gem 'savon', '~> 2.12.0' +gem 'savon', '~> 2.13.0' ``` ## Usage example @@ -76,5 +76,3 @@ $ bundle exec rspec ## Documentation Please be sure to [read the documentation](https://www.rubydoc.info/github/savonrb/savon/). - - diff --git a/lib/savon/version.rb b/lib/savon/version.rb index 2fcf22f6..799d668c 100644 --- a/lib/savon/version.rb +++ b/lib/savon/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Savon - VERSION = '2.13.0' + VERSION = '2.13.1' end