Skip to content

Commit 017afb7

Browse files
committed
0.10.0
1 parent 4a43dec commit 017afb7

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.10.0 -- 2024-08-26
4+
5+
- Add a migrate() API that can be used to do migrations on both schema databases and regular databases. It is mostly dedicated to schema migration tools.
6+
37
## 0.8.1 -- 2024-08-03
48

59
- Fix embedded replica sync WAL index path name , which caused "No such file or directory" for local sync in some cases ([#244](https://github.com/tursodatabase/libsql-client-ts/issues/244)).

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/libsql-client-wasm/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@libsql/client-wasm",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"keywords": [
55
"libsql",
66
"database",
@@ -56,7 +56,7 @@
5656
"typedoc": "rm -rf ./docs && typedoc"
5757
},
5858
"dependencies": {
59-
"@libsql/core": "^0.9.0",
59+
"@libsql/core": "^0.10.0",
6060
"@libsql/libsql-wasm-experimental": "^0.0.2",
6161
"js-base64": "^3.7.5"
6262
},

packages/libsql-client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@libsql/client",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"keywords": [
55
"libsql",
66
"database",
@@ -102,7 +102,7 @@
102102
"lint-staged": "lint-staged"
103103
},
104104
"dependencies": {
105-
"@libsql/core": "^0.9.0",
105+
"@libsql/core": "^0.10.0",
106106
"@libsql/hrana-client": "^0.6.2",
107107
"js-base64": "^3.7.5",
108108
"libsql": "^0.4.1",

packages/libsql-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@libsql/core",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"keywords": [
55
"libsql",
66
"database",

0 commit comments

Comments
 (0)