Skip to content

Commit d91c82c

Browse files
Update simdjson to 4.2.4 (#111)
* updated rockspec and to simdjson 4.2.4 * updated README to indicate new Lua/simdjson version
1 parent c6ab63f commit d91c82c

File tree

5 files changed

+209
-121
lines changed

5 files changed

+209
-121
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# lua-simdjson
22
[![Build Status](https://github.com/FourierTransformer/lua-simdjson/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/FourierTransformer/lua-simdjson/actions?query=branch%3Amaster)
33

4-
A basic Lua binding to [simdjson](https://simdjson.org). The simdjson library is an incredibly fast JSON parser that uses SIMD instructions and fancy algorithms to parse JSON very quickly. It's been tested with LuaJIT 2.0/2.1 and Lua 5.1, 5.2, 5.3, and 5.4 on linux/osx/windows. It has a general parsing mode and a lazy mode that uses a JSON pointer.
4+
A basic Lua binding to [simdjson](https://simdjson.org). The simdjson library is an incredibly fast JSON parser that uses SIMD instructions and fancy algorithms to parse JSON very quickly. It's been tested with LuaJIT 2.0/2.1 and Lua 5.1 to 5.5 on linux/osx/windows. It has a general parsing mode and a lazy mode that uses a JSON pointer.
55

6-
Current simdjson version: 4.2.3
6+
Current simdjson version: 4.2.4
77

88
## Installation
99
If all the requirements are met, lua-simdjson can be install via luarocks with:
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package="lua-simdjson"
2-
version="0.0.8-1"
2+
version="0.0.9-1"
33
source = {
44
url = "git://github.com/FourierTransformer/lua-simdjson",
5-
tag = "0.0.8"
5+
tag = "0.0.9"
66
}
77
description = {
88
summary = "This is a simple Lua binding for simdjson",

src/luasimdjson.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include "luasimdjson.h"
1616

1717
#define LUA_SIMDJSON_NAME "simdjson"
18-
#define LUA_SIMDJSON_VERSION "0.0.8"
18+
#define LUA_SIMDJSON_VERSION "0.0.9"
1919

2020
using namespace simdjson;
2121

src/simdjson.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on 2025-12-12 17:50:52 -0500. version 4.2.3 Do not edit! */
1+
/* auto-generated on 2025-12-17 20:32:36 -0500. version 4.2.4 Do not edit! */
22
/* including simdjson.cpp: */
33
/* begin file simdjson.cpp */
44
#define SIMDJSON_SRC_SIMDJSON_CPP

0 commit comments

Comments
 (0)