From 03961bfff063775cd3ae3661f5dacebdf4888a87 Mon Sep 17 00:00:00 2001 From: Ricardo Hermida Ruiz Date: Fri, 13 May 2016 15:16:00 -0300 Subject: [PATCH] Release 1.1.3 --- CHANGELOG.md | 8 ++++++++ Gemfile.lock | 4 ++-- lib/cassette/version.rb | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3126f6b..29ecf2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [1.1.3] - 2016-05-13 +## Changed +- Memoizes Faraday instances to keep the number of file descriptors down + +## [1.1.2] - 2016-04-28 +### Fixed +- Fixed an issue with sessions and RubyCAS helper + ## [1.1.1] - 2016-04-15 ### Fixed - Fixed a `NoMethodError` caused by refactoring diff --git a/Gemfile.lock b/Gemfile.lock index 05f11e8..2d0b8ca 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - cassette (1.1.2) + cassette (1.1.3) activesupport (> 3.1.0) faraday (> 0.9) libxml-ruby @@ -113,4 +113,4 @@ DEPENDENCIES webmock BUNDLED WITH - 1.10.6 + 1.12.3 diff --git a/lib/cassette/version.rb b/lib/cassette/version.rb index f828f10..14d1e62 100644 --- a/lib/cassette/version.rb +++ b/lib/cassette/version.rb @@ -2,7 +2,7 @@ module Cassette class Version MAJOR = '1' MINOR = '1' - PATCH = '2' + PATCH = '3' def self.version [MAJOR, MINOR, PATCH].join('.')