summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNoel Peden <[email protected]>2019-10-04 10:49:12 -0700
committerNoel Peden <[email protected]>2019-10-04 10:49:12 -0700
commit1f8f70589be0c7055b510af76e1bbaf7c861ad58 (patch)
tree6409e3bc5d7f3f2c5cafe7585aa9d2f4622b376f
parente712b66c9aedb178a5cf550834d05c2bee00cc27 (diff)
downloadcaxlsx-1f8f70589be0c7055b510af76e1bbaf7c861ad58.tar.gz
caxlsx-1f8f70589be0c7055b510af76e1bbaf7c861ad58.zip
Version 3.0.1 bump [skip ci]
-rw-r--r--CHANGELOG.md6
-rw-r--r--README.md28
-rw-r--r--axlsx.gemspec2
-rw-r--r--lib/axlsx/version.rb2
4 files changed, 22 insertions, 16 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 901ab193..83d88069 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,10 +1,5 @@
CHANGELOG
---------
-- **April.1.17**:3.0.0-pre
- - Support for ruby versions limited to officially supported version
- - Updates to dependency gems, especially nokogiri and ruby-zip
- - Patch options parsing for two cell anchor
- - Remove support for depreciated worksheet members
- **November.25.12**:1.3.4
- Support for headers and footers for worksheets
- bug fix: Properly escape hyperlink urls
@@ -12,7 +7,6 @@ CHANGELOG
- Improvements in autowidth calculation.
- **November.8.12**:1.3.3
- Patched cell run styles for u and validation for family
-
- **November.5.12**:1.3.2
- MASSIVE REFACTORING
- Patch for apostrophes in worksheet names
diff --git a/README.md b/README.md
index 114c2bed..44526428 100644
--- a/README.md
+++ b/README.md
@@ -2,9 +2,9 @@ Notice: Community Axlsx organization
===================================================
All Axlsx related gems have been forked or moved to a community organization: http://github.com/caxlsx
* Axlsx
-* acts_as_axlsx
+* acts_as_caxlsx
* axlsx_rails
-* activeadmin-axlsx
+* activeadmin-caxlsx
Please consider helping develop and test these gems.
@@ -27,9 +27,9 @@ appreciation for the gem, please don't hesitate to make a donation.
**License**: MIT License
-**Latest Version**: 3.0.0
+**Latest Version**: 3.0.1
-**Ruby Version**: 2.2.7, 2.3.4, 2.4.1
+**Ruby Version**: 2.3.8, 2.4.5, 2.5.3, 2.6.3
**JRuby Version**: 1.9 modes
@@ -127,7 +127,7 @@ To install Axlsx, use the following command:
$ gem install caxlsx
-#Examples
+Examples
------
The example listing is getting overly large to maintain here.
@@ -154,7 +154,7 @@ Please see the [examples](https://github.com/caxlsx/axlsx/tree/master/examples/e
There is much, much more you can do with this gem. If you get stuck, grab me on IRC or submit an issue to GitHub. Chances are that it has already been implemented. If it hasn't - let's take a look at adding it in.
-#Documentation
+Documentation
--------------
This gem is 100% documented with YARD, an exceptional documentation library. To see documentation for this, and all the gems installed on your system use:
@@ -163,13 +163,25 @@ This gem is 100% documented with YARD, an exceptional documentation library. To
yard server -g
-#Specs
+Specs
------
This gem has 100% test coverage using test/unit. To execute tests for this gem, simply run rake in the gem directory.
-#Change log
+Change log
---------
+- **October.4.19**:3.0.1
+ - Support for ruby versions limited to officially supported version
+ - Updates to dependency gems, especially nokogiri and ruby-zip
+ - Fix Relationship.instances cache
+ - Autoload fix for Rails
+- **September.17.19**:3.0.0
+ - First release of caxlsx, fork of axlsx
+- **April.1.17**:3.0.0-pre
+ - Support for ruby versions limited to officially supported version
+ - Updates to dependency gems, especially nokogiri and ruby-zip
+ - Patch options parsing for two cell anchor
+ - Remove support for depreciated worksheet members
- **
- Added Cell#name so you you can quickly create a defined name for a single cell in your workbook.
- Added full book view and sheet state management. This means you can specify how the workbook renders as well as manage sheet visibility.
diff --git a/axlsx.gemspec b/axlsx.gemspec
index 7bd72d56..e4260c13 100644
--- a/axlsx.gemspec
+++ b/axlsx.gemspec
@@ -3,7 +3,7 @@ require File.expand_path('../lib/axlsx/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'caxlsx'
s.version = Axlsx::VERSION
- s.authors = ["Randy Morgan", "Jurriaan Pruis", "Noel Peden"]
+ s.authors = ["Randy Morgan", "Jurriaan Pruis"]
s.email = '[email protected]'
s.homepage = 'https://github.com/caxlsx/caxlsx'
s.platform = Gem::Platform::RUBY
diff --git a/lib/axlsx/version.rb b/lib/axlsx/version.rb
index 22a02aa2..d6c7183f 100644
--- a/lib/axlsx/version.rb
+++ b/lib/axlsx/version.rb
@@ -1,5 +1,5 @@
module Axlsx
# The current version
- VERSION = "3.0.0"
+ VERSION = "3.0.1"
end