Skip to content

Commit

Permalink
Update to work with Lua 5.4 (#27)
Browse files Browse the repository at this point in the history
* updates for lua 5.4
  • Loading branch information
FourierTransformer authored Oct 29, 2020
1 parent 8668631 commit 697856f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ env:
- LUA="lua=5.1"
- LUA="lua=5.2"
- LUA="lua=5.3"
- LUA="lua=5.4"
- LUA="luajit=2.0"
- LUA="luajit=2.1"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ftcsv
[![Build Status](https://travis-ci.org/FourierTransformer/ftcsv.svg?branch=master)](https://travis-ci.org/FourierTransformer/ftcsv) [![Coverage Status](https://coveralls.io/repos/github/FourierTransformer/ftcsv/badge.svg?branch=master)](https://coveralls.io/github/FourierTransformer/ftcsv?branch=master)

ftcsv is a 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
ftcsv is a fast csv library written in pure Lua. It's been tested with LuaJIT 2.0/2.1 and Lua 5.1, 5.2, 5.3, and 5.4

It features two parsing modes, one for CSVs that can easily be loaded into memory (up to a few hundred MBs depending on the system), and another for loading files using an iterator - useful for manipulating large files or processing during load. It correctly handles most csv (and csv-like) files found in the wild, from varying line endings (Windows, Linux, and OS9), UTF-8 BOM support, and odd delimiters. There are also various options that can tweak how a file is loaded, only grabbing a few fields, renaming fields, and parsing header-less files!

Expand Down
6 changes: 3 additions & 3 deletions ftcsv-1.2.0-1.rockspec → ftcsv-1.2.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package = "ftcsv"
version = "1.2.0-1"
version = "1.2.1-1"

source = {
url = "git://github.com/FourierTransformer/ftcsv.git",
tag = "1.2.0"
tag = "1.2.1"
}

description = {
Expand All @@ -23,7 +23,7 @@ description = {
}

dependencies = {
"lua >= 5.1, <5.4",
"lua >= 5.1",
}

build = {
Expand Down

0 comments on commit 697856f

Please sign in to comment.