Skip to content

Commit 57b822c

Browse files
committed
bump to v0.3.1
1 parent 9c3c459 commit 57b822c

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId "dev.toolworks.trustynotes"
88
minSdkVersion rootProject.ext.minSdkVersion
99
targetSdkVersion rootProject.ext.targetSdkVersion
10-
versionCode 1
11-
versionName "1.0"
10+
versionCode 2
11+
versionName "2.0"
1212
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1313
aaptOptions {
1414
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.

bun.lockb

0 Bytes
Binary file not shown.

desktop/bun.lockb

0 Bytes
Binary file not shown.

desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "trusty-notes-electron",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"main": "main.js",
55
"type": "commonjs",
66
"description": "TrustyNotes is a simple, secure, and reliable note-taking app",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "trusty-notes-web",
33
"private": true,
4-
"version": "0.3.0",
4+
"version": "0.3.1",
55
"type": "module",
66
"description": "TrustyNotes is a simple, secure, and reliable note-taking app",
77
"author": "Toolworks.dev",

server/bun.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"mongodb": "^6.13.0",
1313
},
1414
"devDependencies": {
15-
"@types/node": "^22.13.1",
15+
"@types/node": "^22.13.4",
1616
},
1717
},
1818
},
@@ -35,7 +35,7 @@
3535

3636
"bytes": ["[email protected]", "", {}, "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="],
3737

38-
"call-bind-apply-helpers": ["[email protected].1", "", { "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2" } }, "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g=="],
38+
"call-bind-apply-helpers": ["[email protected].2", "", { "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2" } }, "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ=="],
3939

4040
"call-bound": ["[email protected]", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.1", "get-intrinsic": "^1.2.6" } }, "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA=="],
4141

src/hooks/useAutoSync.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export function useAutoSync(auto_sync: boolean, sync_interval: number) {
3232
body: JSON.stringify({
3333
public_key: await cryptoService.getPublicKeyBase64(),
3434
notes: encryptedNotes,
35-
client_version: '0.2.0'
35+
client_version: '0.3.0'
3636
}),
3737
});
3838

0 commit comments

Comments
 (0)