From bd3e04c75b2db699f952dc139e7a19df03bdaee1 Mon Sep 17 00:00:00 2001 From: Steven Daniels Date: Sat, 31 Dec 2016 11:41:38 -0500 Subject: [PATCH 1/3] Updated travis configuration --- .travis.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index fc7aca88..e40d15ed 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,6 @@ rvm: - 2.3.1 - 2.4.0 - ruby-head - - rbx-2 - jruby-9.1.6.0 matrix: include: @@ -15,5 +14,4 @@ matrix: allow_failures: - rvm: ruby-head - rvm: jruby-9.1.6.0 - - rvm: rbx-2 bundler_args: --without local_development From 1050cff6c6bb30adec4de6f598d9ab846a395de2 Mon Sep 17 00:00:00 2001 From: Steven Daniels Date: Sat, 31 Dec 2016 11:41:49 -0500 Subject: [PATCH 2/3] Added codeclimate configuration --- .codeclimate.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .codeclimate.yml diff --git a/.codeclimate.yml b/.codeclimate.yml new file mode 100644 index 00000000..7cdba5f7 --- /dev/null +++ b/.codeclimate.yml @@ -0,0 +1,17 @@ +--- +engines: + duplication: + enabled: true + config: + languages: + - ruby + fixme: + enabled: true + rubocop: + enabled: true +ratings: + paths: + - "**.rb" +exclude_paths: +- spec/ +- test/ From 0d185d9fe828e5e6a0b560772d61937c3e1de052 Mon Sep 17 00:00:00 2001 From: Steven Daniels Date: Sat, 31 Dec 2016 11:44:27 -0500 Subject: [PATCH 3/3] Bump Version to 2.7.0 --- CHANGELOG.md | 11 +++++++++++ lib/roo/version.rb | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1dbdb77a..fc2038a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ ## Unreleased +## [2.7.0] 2016-12-31 +### Fixed +- Added rack server for testing Roo's download capabilities [365](https://github.com/roo-rb/roo/pull/365) +- Refactored tests into different formats [365](https://github.com/roo-rb/roo/pull/365) +- Fixed OpenOffice for JRuby [362](https://github.com/roo-rb/roo/pull/362) +- Added '0.000000' => '%.6f' number format [354](https://github.com/roo-rb/roo/pull/354) +- Add additional formula cell types for to_csv [367][https://github.com/roo-rb/roo/pull/367] + +### Added +- Extracted formatters from Roo::Base#to_* methods [364](https://github.com/roo-rb/roo/pull/364) + ## [2.6.0] 2016-12-28 ### Fixed - Fixed error if sheet name starts with a slash [348](https://github.com/roo-rb/roo/pull/348) diff --git a/lib/roo/version.rb b/lib/roo/version.rb index 3c9b93c0..7579134a 100644 --- a/lib/roo/version.rb +++ b/lib/roo/version.rb @@ -1,3 +1,3 @@ module Roo - VERSION = "2.6.0" + VERSION = "2.7.0" end