diff --git a/.gitignore b/.gitignore index c56c374..8a7c2a4 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,9 @@ Gemfile.lock Gemfile.local pkg +# RubyMine +.idea + # Tags .tags .tags_sorted_by_file diff --git a/doc/release_notes.md b/doc/release_notes.md index dca0d2d..54cead2 100644 --- a/doc/release_notes.md +++ b/doc/release_notes.md @@ -1,6 +1,11 @@ Release notes ============= +### 0.2.0 (2017-04-24) +* Support for overriding exceptions from authorizers ([PR #64](https://github.com/Apipie/apipie-bindings/pull/64)) +* Use ssl_ca_file with ssl_ca_path (rest-client < 1.7.0) ([PR #63](https://github.com/Apipie/apipie-bindings/pull/63)) ([#62](https://github.com/Apipie/apipie-bindings/issues/62)) +* Make following redirects compatible with rest-client > 1.8 ([PR #61](https://github.com/Apipie/apipie-bindings/pull/61)) ([#60](https://github.com/Apipie/apipie-bindings/issues/60)) + ### 0.1.0 (2017-03-28) * Verify SSL by default ([PR #59](https://github.com/Apipie/apipie-bindings/pull/59)) * Do not hide exceptions during cache retrieval ([PR #57](https://github.com/Apipie/apipie-bindings/pull/57)) diff --git a/lib/apipie_bindings/version.rb b/lib/apipie_bindings/version.rb index 16366e4..8c12d54 100644 --- a/lib/apipie_bindings/version.rb +++ b/lib/apipie_bindings/version.rb @@ -1,5 +1,5 @@ module ApipieBindings def self.version - @version ||= Gem::Version.new '0.1.0' + @version ||= Gem::Version.new '0.2.0' end end