diff --git a/README.md b/README.md index e624010..a724e75 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ ftcsv, a fairly fast csv library written in pure Lua. It's been tested with LuaJIT 2.0/2.1 and Lua 5.1, 5.2, and 5.3 -It works well for CSVs that can easily be fully loaded into memory (easily up to a hundred MB). Currently, there isn't a "large" file mode with proper readers and writers for ingesting CSVs in bulk with a fixed amount of memory. It correctly handles both `\n` (LF) and `\r\n` (CRLF) line endings (ie it should work with Windows and Mac/Linux line endings) and has UTF-8 support. +It works well for CSVs that can easily be fully loaded into memory (easily up to a hundred MB). Currently, there isn't a "large" file mode with proper readers and writers for ingesting CSVs in bulk with a fixed amount of memory. It correctly handles both `\n` (LF), `\r` (CR) and `\r\n` (CRLF) line endings (ie it should work with Unix, Mac OS 9, and Windows line endings) and has UTF-8 support. diff --git a/ftcsv-1.1.3-1.rockspec b/ftcsv-1.1.4-1.rockspec similarity index 95% rename from ftcsv-1.1.3-1.rockspec rename to ftcsv-1.1.4-1.rockspec index 8267efb..236ef9d 100644 --- a/ftcsv-1.1.3-1.rockspec +++ b/ftcsv-1.1.4-1.rockspec @@ -1,9 +1,9 @@ package = "ftcsv" -version = "1.1.3-1" +version = "1.1.4-1" source = { url = "git://github.com/FourierTransformer/ftcsv.git", - tag = "1.1.3" + tag = "1.1.4" } description = { diff --git a/ftcsv.lua b/ftcsv.lua index 5dea5fb..2afd833 100644 --- a/ftcsv.lua +++ b/ftcsv.lua @@ -1,5 +1,5 @@ local ftcsv = { - _VERSION = 'ftcsv 1.1.3', + _VERSION = 'ftcsv 1.1.4', _DESCRIPTION = 'CSV library for Lua', _URL = 'https://github.com/FourierTransformer/ftcsv', _LICENSE = [[