Skip to content

Commit 0abb917

Browse files
committed
Limbo 0.0.13
1 parent 466bc8b commit 0abb917

File tree

9 files changed

+61
-23
lines changed

9 files changed

+61
-23
lines changed

CHANGELOG.md

+38
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,43 @@
11
# Changelog
22

3+
## 0.0.13 - 2025-01-19
4+
5+
### Added
6+
7+
* Initial support for native Limbo extensions (Preston Thorpe)
8+
9+
* npm packaging for node and web (Elijah Morgan)
10+
11+
* Add support for `rowid` keyword' (Kould)
12+
13+
* Add support for shift left, shift right, is and is not operators (Vrishabh)
14+
15+
* Add regexp extension (Vrishabh)
16+
17+
* Add counterexample minimization to simulator (Alperen Keleş)
18+
19+
* Initial support for binding values to prepared statements (Levy A.)
20+
21+
### Updated
22+
23+
* Java binding improvements (Kim Seon Woo)
24+
25+
* Reduce `liblimbo_sqlite3.a` size' (Pekka Enberg)
26+
27+
### Fixed
28+
29+
* Fix panics on invalid aggregate function arguments (Krishna Vishal)
30+
31+
* Fix null compare operations not giving null (Vrishabh)
32+
33+
* Run all statements from SQL argument in CLI (Vrishabh)
34+
35+
* Fix MustBeInt opcode semantics (Vrishabh)
36+
37+
* Fix recursive binary operation logic (Jussi Saurio)
38+
39+
* Fix SQL comment parsing in Limbo shell (Diego Reis and Clyde)
40+
341
## 0.0.12 - 2025-01-14
442

543
### Added

Cargo.lock

+14-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ members = [
2020
exclude = ["perf/latency/limbo"]
2121

2222
[workspace.package]
23-
version = "0.0.12"
23+
version = "0.0.13"
2424
authors = ["the Limbo authors"]
2525
edition = "2021"
2626
license = "MIT"

bindings/wasm/examples/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
"dependencies": {
1414
"better-sqlite3": "^11.5.0",
1515
"drizzle-orm": "^0.36.3",
16-
"limbo-wasm": "^0.0.12"
16+
"limbo-wasm": ".."
1717
}
1818
}

bindings/wasm/integration-tests/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/wasm/integration-tests/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
},
1111
"dependencies": {
1212
"better-sqlite3": "^11.7.0",
13-
"limbo-wasm": "^0.0.12"
13+
"limbo-wasm": ".."
1414
}
1515
}

bindings/wasm/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/wasm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"collaborators": [
44
"the Limbo authors"
55
],
6-
"version": "0.0.12",
6+
"version": "0.0.13",
77
"license": "MIT",
88
"repository": {
99
"type": "git",

bindings/wasm/test-limbo-pkg/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"type": "module",
55
"dependencies": {
6-
"limbo-wasm": "[email protected].12"
6+
"limbo-wasm": "[email protected].13"
77
},
88
"scripts": {
99
"dev": "vite"

0 commit comments

Comments
 (0)