diff options
author | Veniamin Albaev <albenik@gmail.com> | 2019-03-06 16:40:45 +0300 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2019-03-06 21:40:45 +0800 |
commit | 12c1e2481e3f9f3c3c12a938484f04b12d5dede8 (patch) | |
tree | 30c84b5ae2f26e0b97aa965307dad50c2b4d60aa /README.md | |
parent | f66212da9bab1c39ab791d41881c70ae7ba00c20 (diff) |
Implement consistent row addressing by Excel row number starting with 1 (#350)
* Implement consistent row addressing by Excel row number starting with 1
1. Added second versions for all row manipulation methods with zero-based row addressing.
2. Fixed methods documentation to explicitly describe which row addressing used in method.
3. Added WARNING to README.md.
4. Cosmetic change: All row test moved to file `rows_test.go`.
* TravisCI: go1.12 added to tests matrix
* BACKWARD INCOMPARTIBLE: Use only Excel numbering logic from 1 row
* README updated
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -15,6 +15,11 @@ Excelize is a library written in pure Go and providing a set of functions that allow you to write to and read from XLSX files. Support reads and writes XLSX file generated by Microsoft Excel™ 2007 and later. Support save file without losing original charts of XLSX. This library needs Go version 1.8 or later. The full API docs can be seen using go's built-in documentation tool, or online at [godoc.org](https://godoc.org/github.com/360EntSecGroup-Skylar/excelize) and [docs reference](https://xuri.me/excelize/). +**WARNING!** + +From version 1.5 all row manipulation methods uses Excel row numbering starting with `1` instead of zero-based numbering +which take place in some methods in eraler versions. + ## Basic Usage ### Installation |