diff options
| author | Randy Morgan <[email protected]> | 2012-04-01 12:21:08 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2012-04-01 12:21:08 +0900 |
| commit | 98235dc38925a2d7d9d496dfd8efe508bc69a132 (patch) | |
| tree | 9cd2632dd3b22eabd7c0477323b45ec43c3cc02a | |
| parent | 1c39d461fa0355ccad7476f31471381e64798cdd (diff) | |
| download | caxlsx-98235dc38925a2d7d9d496dfd8efe508bc69a132.tar.gz caxlsx-98235dc38925a2d7d9d496dfd8efe508bc69a132.zip | |
version bump
| -rw-r--r-- | CHANGELOG.md | 14 | ||||
| -rw-r--r-- | README.md | 15 | ||||
| -rw-r--r-- | lib/axlsx/version.rb | 2 |
3 files changed, 18 insertions, 13 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 20b466ce..9962a604 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ CHANGELOG --------- +- ** February.2.12**: 1.0.16 release + https://github.com/randym/axlsx/compare/1.0.15...1.0.16 + - Bug fix for schema file locations when validating in rails + - Added hyperlink to images + - date1904 now automatically set in BSD and mac environments + - removed whitespace/indentation from xml outputs + - col_style now skips rows that do not contain cells at the column index + - **January.6.12**: 1.0.15 release https://github.com/randym/axlsx/compare/1.0.14...1.0.15 - Bug fix add_style specified number formats must be explicity applied for libraOffice @@ -15,7 +23,7 @@ CHANGELOG - Updated examples to output to a single workbook with multiple sheets - Added access to app and core package objects so you can set the creator and other properties of the package - The beginning of password protected xlsx files - roadmapped for January release. - + - **December.8.11**: 1.0.13 release - Fixing .gemspec errors that caused gem to miss the lib directory. Sorry about that. @@ -62,7 +70,7 @@ CHANGELOG ##October.22.11: 1.0.6 release - Bumping version to include docs. Bug in gemspec pointing to incorrect directory. -##October.22.11: 1.05 +##October.22.11: 1.05 - Added support for line charts - Updated examples and readme - Updated series title to be a real title ** NOTE ** If you are accessing titles directly you will need to update text assignation. @@ -70,7 +78,7 @@ CHANGELOG chart.series.first.title.text = 'Your Title' With this change you can assign a cell for the series title chart.series.title = sheet.rows.first.cells.first - If you are using the recommended + If you are using the recommended chart.add_series :data=>[], :labels=>[], :title You do not have to change anything. - BugFix: shape attribute for bar chart is now properly serialized @@ -18,7 +18,9 @@ Axlsx: Office Open XML Spreadsheet Generation **Ruby Version**: 1.8.7, 1.9.2, 1.9.3 -**Release Date**: March 5th 2012 +**JRuby Version**: 1.6.7 + +**Release Date**: April 1st 2012 Synopsis -------- @@ -385,6 +387,8 @@ This gem has 100% test coverage using test/unit. To execute tests for this gem, - Support for tables added in - Note: Pre 2011 versions of Mac office do not support this feature. - Support for splatter charts added - Major performance updates. + - Gem now supports for JRuby 1.6.7 + - ** March.5.12**: 1.0.18 release https://github.com/randym/axlsx/compare/1.0.17...1.0.18 - bugfix custom borders are not properly applied when using styles.add_style @@ -402,13 +406,6 @@ This gem has 100% test coverage using test/unit. To execute tests for this gem, - Added in support for fixed column_widths - Removed unneeded dependencies on active-support and i18n -- ** February.2.12**: 1.0.16 release - https://github.com/randym/axlsx/compare/1.0.15...1.0.16 - - Bug fix for schema file locations when validating in rails - - Added hyperlink to images - - date1904 now automatically set in BSD and mac environments - - removed whitespace/indentation from xml outputs - - col_style now skips rows that do not contain cells at the column index Please see the {file:CHANGELOG.md} document for past release information. @@ -434,5 +431,5 @@ Please see the {file:CHANGELOG.md} document for past release information. #Copyright and License ---------- -Axlsx © 2011 by [Randy Morgan](mailto:[email protected]). Axlsx is +Axlsx © 2011-2012 by [Randy Morgan](mailto:[email protected]). Axlsx is licensed under the MIT license. Please see the {file:LICENSE} document for more information. diff --git a/lib/axlsx/version.rb b/lib/axlsx/version.rb index fba7c709..175371e8 100644 --- a/lib/axlsx/version.rb +++ b/lib/axlsx/version.rb @@ -5,6 +5,6 @@ module Axlsx # When using bunle exec rake and referencing the gem on github or locally # it will use the gemspec, which preloads this constant for the gem's version. # We check to make sure that it has not already been loaded - VERSION="1.0.18" unless Axlsx.const_defined? :VERSION + VERSION="1.1.0" unless Axlsx.const_defined? :VERSION end |
