summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRandy Morgan <[email protected]>2012-11-05 08:25:55 +0900
committerRandy Morgan <[email protected]>2012-11-05 08:25:55 +0900
commit75eee58d7aecd0f0e89ec7a8ff2a37e6013f9e8d (patch)
tree2c6e4538d9878358923e03c7286688130bfb0513
parent2c9cfc269f0e0e8088d51873a3f6593fcf3c0941 (diff)
downloadcaxlsx-75eee58d7aecd0f0e89ec7a8ff2a37e6013f9e8d.tar.gz
caxlsx-75eee58d7aecd0f0e89ec7a8ff2a37e6013f9e8d.zip
updated readme and version for 1.3.2 release
-rw-r--r--README.md21
-rw-r--r--lib/axlsx/version.rb2
2 files changed, 14 insertions, 9 deletions
diff --git a/README.md b/README.md
index 9af712a4..a8e7751e 100644
--- a/README.md
+++ b/README.md
@@ -15,13 +15,13 @@ appreciation for the gem, please don't hesitate to make a donation.
**Google Group**: [https://groups.google.com/forum/?fromgroups#!forum/axlsx](https://groups.google.com/forum/?fromgroups#!forum/axlsx)
-**Author**: Randy Morgan
+**Author**: Randy Morgan
-**Copyright**: 2011 - 2012
+**Copyright**: 2011 - 2012
**License**: MIT License
-**Latest Version**: 1.3.1
+**Latest Version**: 1.3.2
**Ruby Version**: 1.8.7, 1.9.2, 1.9.3
@@ -29,7 +29,7 @@ appreciation for the gem, please don't hesitate to make a donation.
**Rubinius Version**: rubinius 2.0.0dev * lower versions may run, this gem always tests against head.
-**Release Date**: September 30th 2012
+**Release Date**: November 5th 2012
If you are working in rails, or with active record see:
* http://github.com/randym/acts_as_xlsx
@@ -149,9 +149,14 @@ This gem has 100% test coverage using test/unit. To execute tests for this gem,
#Change log
---------
-- **October.??.12**: 1.3.2
- - Patched to handle sheet names with apostrophes
- - refactored string and boolean attribute accessors
+- **November.5.12**:1.3.2
+ - MASSIVE REFACTORING
+ - Patch for apostrophes in worksheet names
+ - added sheet_by_name for workbook so you can now find your worksheets
+ by name
+ - added insert_worksheet so you can now add a worksheet to an
+ arbitrary position in the worksheets list.
+ - reduced memory consumption for package parts post serialization
- **September.30.12**: 1.3.1
- Improved control character handling
- Added stored auto filter values and date grouping items
@@ -173,7 +178,7 @@ As axslx implements the Office Open XML (ECMA-376 spec) much of the
functionality is interoperable with other spreadsheet software. Below is
a listing of some known issues.
-1. Libra Office
+1. Libre Office
- You must specify colors for your series. see examples/chart_colors.rb
for an example.
- You must use data in your sheet for charts. You cannot use hard coded
diff --git a/lib/axlsx/version.rb b/lib/axlsx/version.rb
index 9a40f3f1..a90ea6d7 100644
--- a/lib/axlsx/version.rb
+++ b/lib/axlsx/version.rb
@@ -1,5 +1,5 @@
module Axlsx
# The current version
- VERSION = "1.3.1"
+ VERSION = "1.3.2"
end