Skip to content

Commit 3e0d37c

Browse files
committed
prep 0.3.1 release
1 parent 888a9ce commit 3e0d37c

File tree

7 files changed

+18
-14
lines changed

7 files changed

+18
-14
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
This changelog documents changes across multiple projects contained in this monorepo. Each project is released for every SQLSync version, even if the project has not changed. The reason for this decision is to simplify testing and debugging. Lockstep versioning will be relaxed as SQLSync matures.
22

3+
# 0.3.1 - Mar 9 2024
4+
5+
- Fixed bug that caused errors to be swallowed
6+
37
# 0.3.0 - Jan 7 2023
48

59
- Moved the majority of functionality from `sqlsync-react` to `sqlsync-worker` to make it easier to add additional JS framework support. ([#38])

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ edition = "2021"
2020
homepage = "https://sqlsync.dev"
2121
license = "Apache-2.0"
2222
repository = "https://github.com/orbitinghail/sqlsync"
23-
version = "0.3.0"
23+
version = "0.3.1"
2424

2525
[profile.release]
2626
lto = true

GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ strip = "debuginfo"
5151
codegen-units = 1
5252

5353
[dependencies]
54-
sqlsync-reducer = "0.2"
54+
sqlsync-reducer = "0.3.1"
5555
serde = { version = "1.0", features = ["derive"] }
5656
serde_json = "1.0"
5757
log = "0.4"

lib/sqlsync-react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@orbitinghail/sqlsync-react",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "SQLSync is a collaborative offline-first wrapper around SQLite. It is designed to synchronize web application state between users, devices, and the edge.",
55
"homepage": "https://sqlsync.dev",
66
"license": "Apache-2.0",
@@ -62,4 +62,4 @@
6262
"dependencies": {
6363
"fast-equals": "^5.0.1"
6464
}
65-
}
65+
}

lib/sqlsync-solid-js/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@orbitinghail/sqlsync-solid-js",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "SQLSync is a collaborative offline-first wrapper around SQLite. It is designed to synchronize web application state between users, devices, and the edge.",
55
"homepage": "https://sqlsync.dev",
66
"license": "Apache-2.0",
@@ -62,4 +62,4 @@
6262
"@orbitinghail/sqlsync-worker": "workspace:^",
6363
"solid-js": "^1.8.7"
6464
}
65-
}
65+
}

lib/sqlsync-worker/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@orbitinghail/sqlsync-worker",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "SQLSync is a collaborative offline-first wrapper around SQLite. It is designed to synchronize web application state between users, devices, and the edge.",
55
"homepage": "https://sqlsync.dev",
66
"license": "Apache-2.0",
@@ -64,4 +64,4 @@
6464
"@scure/base": "^1.1.5",
6565
"fast-sha256": "^1.3.0"
6666
}
67-
}
67+
}

0 commit comments

Comments
 (0)