diff --git a/CHANGELOG.md b/CHANGELOG.md index 555a013a..69830053 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## 0.0.11 - 2024-12-31 + +### Added + +* Add in-memory mode to Python bindings (Jean Arhancet) + +* Add json_array_length function (Peter Sooley) + +* Add support for the UUID extension (Preston Thorpe) + +### Changed + +* Enable sqpoll by default in io_uring (Preston Thorpe) + +* Simulator improvements (Alperen Keleş) + +### Fixed + +* Fix escaping issues with like and glob functions (Vrishabh) + +* Fix `sqlite_version()` out of bound panics' (Diego Reis) + +* Fix on-disk file format bugs (Jussi Saurio) + ## 0.0.10 - 2024-12-18 ### Added diff --git a/Cargo.lock b/Cargo.lock index aacc8d49..e3370cd5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -386,7 +386,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] name = "core_tester" -version = "0.0.10" +version = "0.0.11" dependencies = [ "anyhow", "clap", @@ -1100,7 +1100,7 @@ dependencies = [ [[package]] name = "limbo" -version = "0.0.10" +version = "0.0.11" dependencies = [ "anyhow", "clap", @@ -1114,7 +1114,7 @@ dependencies = [ [[package]] name = "limbo-wasm" -version = "0.0.10" +version = "0.0.11" dependencies = [ "console_error_panic_hook", "js-sys", @@ -1124,7 +1124,7 @@ dependencies = [ [[package]] name = "limbo_core" -version = "0.0.10" +version = "0.0.11" dependencies = [ "bumpalo", "cfg_block", @@ -1163,11 +1163,11 @@ dependencies = [ [[package]] name = "limbo_macros" -version = "0.0.10" +version = "0.0.11" [[package]] name = "limbo_sim" -version = "0.0.10" +version = "0.0.11" dependencies = [ "anarchist-readable-name-generator-lib", "clap", @@ -1181,7 +1181,7 @@ dependencies = [ [[package]] name = "limbo_sqlite3" -version = "0.0.10" +version = "0.0.11" dependencies = [ "env_logger 0.11.5", "libc", @@ -1625,7 +1625,7 @@ dependencies = [ [[package]] name = "py-limbo" -version = "0.0.10" +version = "0.0.11" dependencies = [ "anyhow", "limbo_core", diff --git a/Cargo.toml b/Cargo.toml index e8101772..95a991fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ members = [ exclude = ["perf/latency/limbo"] [workspace.package] -version = "0.0.10" +version = "0.0.11" authors = ["the Limbo authors"] edition = "2021" license = "MIT" diff --git a/bindings/wasm/package.json b/bindings/wasm/package.json index b9784ce1..2a74b138 100644 --- a/bindings/wasm/package.json +++ b/bindings/wasm/package.json @@ -3,7 +3,7 @@ "collaborators": [ "the Limbo authors" ], - "version": "0.0.10", + "version": "0.0.11", "license": "MIT", "repository": { "type": "git",