From d416f1520c50bbab160ca2ed9a49498fcc3edf50 Mon Sep 17 00:00:00 2001 From: Anmol Chopra Date: Tue, 4 Feb 2020 00:01:41 +0700 Subject: [PATCH] Version Bump --- CHANGELOG.md | 6 ++++-- lib/roo/version.rb | 2 +- test/roo/test_excelx.rb | 2 +- test/roo/test_open_office.rb | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index da6f74ea..a1c3a406 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ ## Unreleased -### Changed / Added -- Updated rubyzip version. Now minimal version is 1.3.0. [CVE-2019-16892](https://github.com/rubyzip/rubyzip/pull/403) + +## [2.8.3] 2020-02-03 +### Changed/Added +- Updated rubyzip version. Now minimal version is 1.3.0 [515](https://github.com/roo-rb/roo/pull/515) - [CVE-2019-16892](https://github.com/rubyzip/rubyzip/pull/403) ## [2.8.2] 2019-02-01 ### Changed/Added diff --git a/lib/roo/version.rb b/lib/roo/version.rb index 1f2140bd..262847ce 100644 --- a/lib/roo/version.rb +++ b/lib/roo/version.rb @@ -1,3 +1,3 @@ module Roo - VERSION = "2.8.2" + VERSION = "2.8.3" end diff --git a/test/roo/test_excelx.rb b/test/roo/test_excelx.rb index 9d460afe..90c7167c 100644 --- a/test/roo/test_excelx.rb +++ b/test/roo/test_excelx.rb @@ -3,7 +3,7 @@ class TestRworkbookExcelx < Minitest::Test def test_download_uri_with_invalid_host assert_raises(RuntimeError) do - Roo::Excelx.new("http://example.com/file.xlsx") + Roo::Excelx.new("http://examples.com/file.xlsx") end end diff --git a/test/roo/test_open_office.rb b/test/roo/test_open_office.rb index e6118b69..18083a58 100644 --- a/test/roo/test_open_office.rb +++ b/test/roo/test_open_office.rb @@ -15,7 +15,7 @@ def test_openoffice_download_uri_and_zipped def test_download_uri_with_invalid_host assert_raises(RuntimeError) do - roo_class.new("http://example.com/file.ods") + roo_class.new("http://examples.com/file.ods") end end