Skip to content

Commit 715bea4

Browse files
authored
Merge pull request #17 from odest/release-please--branches--master
chore: release master
2 parents e9fb499 + c377e85 commit 715bea4

File tree

9 files changed

+50
-9
lines changed

9 files changed

+50
-9
lines changed

.release-please-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
".": "0.1.3",
3-
"apps/native": "0.1.3",
2+
".": "0.1.4",
3+
"apps/native": "0.1.4",
44
"apps/web": "0.1.3",
5-
"packages/ui": "0.1.3",
5+
"packages/ui": "0.1.4",
66
"packages/i18n": "0.1.3",
77
"packages/eslint-config": "0.1.0",
88
"packages/typescript-config": "0.1.0"

CHANGELOG.md

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

3+
## [0.1.4](https://github.com/odest/katip/compare/v0.1.3...v0.1.4) (2025-12-02)
4+
5+
6+
### Features
7+
8+
* **db:** add basic database stack with drizzle, sqlocal, sqlite, postgres ([e9fb499](https://github.com/odest/katip/commit/e9fb4999a5198cb1e863dfb9a2c0e3140e5262b1))
9+
* **db:** add inferred types and userId state ([cce26da](https://github.com/odest/katip/commit/cce26da8c12c2b126f40859d7bbe1ebd591e3085))
10+
* **db:** add initial migration files and schema for SQLite and Postgres ([b2284f0](https://github.com/odest/katip/commit/b2284f069272e123ae13f6a21c8c35e58f56bb66))
11+
* **db:** add SQL plugin, Drizzle proxy and multi-platform database setup ([30db4f0](https://github.com/odest/katip/commit/30db4f05e770e794efc6c81e4019fd1c77ff1a3a))
12+
* **db:** add sqlocal support for local web db and configure migrations ([5a54b68](https://github.com/odest/katip/commit/5a54b6847fbc9cddfbd0acb31a2bcd5dc7030808))
13+
* **db:** initialize local user and client DB on first load ([8ccaa52](https://github.com/odest/katip/commit/8ccaa529bea899614a01d649332468171e4171c0))
14+
* **db:** integrate persistence with database hooks ([63c26ed](https://github.com/odest/katip/commit/63c26ed77fde8ad37cb8fdabfb55c25b63fd3630))
15+
* **utils:** add file utils and unify database ([3c74b80](https://github.com/odest/katip/commit/3c74b808900994cfb22530f9a1795a273a862e62))
16+
317
## [0.1.3](https://github.com/odest/katip/compare/v0.1.2...v0.1.3) (2025-11-28)
418

519

apps/native/CHANGELOG.md

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

3+
## [0.1.4](https://github.com/odest/katip/compare/v0.1.3...v0.1.4) (2025-12-02)
4+
5+
6+
### Features
7+
8+
* **db:** add basic database stack with drizzle, sqlocal, sqlite, postgres ([e9fb499](https://github.com/odest/katip/commit/e9fb4999a5198cb1e863dfb9a2c0e3140e5262b1))
9+
* **db:** add initial migration files and schema for SQLite and Postgres ([b2284f0](https://github.com/odest/katip/commit/b2284f069272e123ae13f6a21c8c35e58f56bb66))
10+
* **db:** add SQL plugin, Drizzle proxy and multi-platform database setup ([30db4f0](https://github.com/odest/katip/commit/30db4f05e770e794efc6c81e4019fd1c77ff1a3a))
11+
* **db:** add sqlocal support for local web db and configure migrations ([5a54b68](https://github.com/odest/katip/commit/5a54b6847fbc9cddfbd0acb31a2bcd5dc7030808))
12+
* **db:** integrate persistence with database hooks ([63c26ed](https://github.com/odest/katip/commit/63c26ed77fde8ad37cb8fdabfb55c25b63fd3630))
13+
* **utils:** add file utils and unify database ([3c74b80](https://github.com/odest/katip/commit/3c74b808900994cfb22530f9a1795a273a862e62))
14+
315
## [0.1.3](https://github.com/odest/katip/compare/v0.1.2...v0.1.3) (2025-11-28)
416

517

apps/native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "native",
33
"private": true,
4-
"version": "0.1.3",
4+
"version": "0.1.4",
55
"type": "module",
66
"scripts": {
77
"dev": "next dev --turbopack",

apps/native/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "katip"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
description = "A Tauri App"
55
authors = ["you"]
66
edition = "2021"

apps/native/src-tauri/tauri.conf.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "katip",
4-
"version": "0.1.3",
4+
"version": "0.1.4",
55
"identifier": "com.katip.app",
66
"build": {
77
"beforeDevCommand": "pnpm dev",
@@ -40,7 +40,9 @@
4040
},
4141
"plugins": {
4242
"sql": {
43-
"preload": ["sqlite:katip.db"]
43+
"preload": [
44+
"sqlite:katip.db"
45+
]
4446
}
4547
}
4648
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "katip",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"private": true,
55
"scripts": {
66
"build": "turbo build",

packages/ui/CHANGELOG.md

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

3+
## [0.1.4](https://github.com/odest/katip/compare/v0.1.3...v0.1.4) (2025-12-02)
4+
5+
6+
### Features
7+
8+
* **db:** add basic database stack with drizzle, sqlocal, sqlite, postgres ([e9fb499](https://github.com/odest/katip/commit/e9fb4999a5198cb1e863dfb9a2c0e3140e5262b1))
9+
* **db:** add inferred types and userId state ([cce26da](https://github.com/odest/katip/commit/cce26da8c12c2b126f40859d7bbe1ebd591e3085))
10+
* **db:** add SQL plugin, Drizzle proxy and multi-platform database setup ([30db4f0](https://github.com/odest/katip/commit/30db4f05e770e794efc6c81e4019fd1c77ff1a3a))
11+
* **db:** add sqlocal support for local web db and configure migrations ([5a54b68](https://github.com/odest/katip/commit/5a54b6847fbc9cddfbd0acb31a2bcd5dc7030808))
12+
* **db:** initialize local user and client DB on first load ([8ccaa52](https://github.com/odest/katip/commit/8ccaa529bea899614a01d649332468171e4171c0))
13+
* **db:** integrate persistence with database hooks ([63c26ed](https://github.com/odest/katip/commit/63c26ed77fde8ad37cb8fdabfb55c25b63fd3630))
14+
* **utils:** add file utils and unify database ([3c74b80](https://github.com/odest/katip/commit/3c74b808900994cfb22530f9a1795a273a862e62))
15+
316
## [0.1.3](https://github.com/odest/katip/compare/v0.1.2...v0.1.3) (2025-11-28)
417

518

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@workspace/ui",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"type": "module",
55
"private": true,
66
"scripts": {

0 commit comments

Comments
 (0)