Skip to content

Commit

Permalink
Release 6.0.0 (#819)
Browse files Browse the repository at this point in the history
* Bump to version 6.0.0

* CHANGELOG updates for 6.0.0

* README: Update note about version support
  • Loading branch information
olleolleolle committed May 28, 2020
1 parent a9b6541 commit 91e1aa3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Changelog
=========

## 6.0.0 (May 28, 2020)
[Full Changelog](https://github.com/vcr/vcr/compare/v5.1.0...v6.0.0)

- [breaking] Require Ruby 2.3 or newer (#816)
- [new] Add option to downcase cassette names before saving (#802)
- [patch] Fix: Prevent storing empty `http_version` on cassettes (#709)
- [patch] Support Faraday persistent connection closing (#793)
- [patch] Support Faraday 1.0 (#794)
- Remove `multi_json` dependency, `yajl-ruby` and use only JSON (#815)

## 5.1.0 (Feb 5, 2020)
[Full Changelog](https://github.com/vcr/vcr/compare/v5.0.0...v5.1.0)
- Use RSpec metadata value as cassette name if value is String (#774)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,13 @@ VCR follows the principles of [semantic versioning](https://semver.org/). The [A

**Ruby Interpreter Compatibility**

VCR versions 5.x are tested on the following ruby interpreters:
VCR versions 6.x are tested on the following ruby interpreters:

* MRI 2.4
* MRI 2.5
* MRI 2.6

Note that as of VCR 3, 1.8.7 and 1.9.2 are explicitly not supported.
Note that as of VCR 6, only 2.3+ is explicitly supported.

**Development**

Expand Down
2 changes: 1 addition & 1 deletion lib/vcr/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module VCR
# * `parts` [Array<Integer>] List of the version parts.
def version
@version ||= begin
string = '5.1.0'
string = '6.0.0'

def string.parts
split('.').map { |p| p.to_i }
Expand Down

0 comments on commit 91e1aa3

Please sign in to comment.