Skip to content

Commit ebd2ea4

Browse files
chore(release): 1.22.0 [skip ci]
# [1.22.0](v1.21.1...v1.22.0) (2025-10-09) ### Bug Fixes * **mobile:** correct version bump calculation to check commits since last bump ([233f6b4](233f6b4)) * **mobile:** improve code consistency in view mode loader ([f8bb08e](f8bb08e)) * **mobile:** improve view mode preference error handling ([da67f39](da67f39)) * **mobile:** replace all arrayBufferToBase64 usage with node-forge ([29cf11e](29cf11e)) * **mobile:** resolve infinite loop in folder-notes screen ([80c79f6](80c79f6)) * **mobile:** resolve master password mode and pagination issues ([22ab604](22ab604)) * **mobile:** resolve node-forge type compatibility in key derivation ([588df9c](588df9c)) * **mobile:** resolve TypeScript errors and remove unused code ([7b47f37](7b47f37)) * **mobile:** update privacy policy URL to app subdomain ([c875258](c875258)) ### Features * **mobile:** add dynamic version display in settings ([5f27ed8](5f27ed8)) * **mobile:** add dynamic version display in settings ([df9b70c](df9b70c)) * **mobile:** enhance authentication flow and fix note viewing ([83ce1f8](83ce1f8))
1 parent 24f7e4f commit ebd2ea4

File tree

5 files changed

+28
-6
lines changed

5 files changed

+28
-6
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# [1.22.0](https://github.com/typelets/typelets-app/compare/v1.21.1...v1.22.0) (2025-10-09)
2+
3+
4+
### Bug Fixes
5+
6+
* **mobile:** correct version bump calculation to check commits since last bump ([233f6b4](https://github.com/typelets/typelets-app/commit/233f6b43537884488de0dc33931ab072016ec74b))
7+
* **mobile:** improve code consistency in view mode loader ([f8bb08e](https://github.com/typelets/typelets-app/commit/f8bb08e3115777d3093d46328d5e9f1fce8f89f3))
8+
* **mobile:** improve view mode preference error handling ([da67f39](https://github.com/typelets/typelets-app/commit/da67f399bae706f8280de3d131e7b96978540e33))
9+
* **mobile:** replace all arrayBufferToBase64 usage with node-forge ([29cf11e](https://github.com/typelets/typelets-app/commit/29cf11ecc9caa20f5f522d8cf8f5f7672baec7eb))
10+
* **mobile:** resolve infinite loop in folder-notes screen ([80c79f6](https://github.com/typelets/typelets-app/commit/80c79f620bf85131fac33096324c027c170f1b2f))
11+
* **mobile:** resolve master password mode and pagination issues ([22ab604](https://github.com/typelets/typelets-app/commit/22ab604b59ad6c633ce2d211fc86614331698511))
12+
* **mobile:** resolve node-forge type compatibility in key derivation ([588df9c](https://github.com/typelets/typelets-app/commit/588df9cc3509c22753575eb15c7c0a2eeea020d6))
13+
* **mobile:** resolve TypeScript errors and remove unused code ([7b47f37](https://github.com/typelets/typelets-app/commit/7b47f37b7ea166ab22e984db1a22cf0c45dffd1a))
14+
* **mobile:** update privacy policy URL to app subdomain ([c875258](https://github.com/typelets/typelets-app/commit/c87525800c064b9997f375751d668fd07d475398))
15+
16+
17+
### Features
18+
19+
* **mobile:** add dynamic version display in settings ([5f27ed8](https://github.com/typelets/typelets-app/commit/5f27ed8237f9bb28590a8df803eabae4e7c6b052))
20+
* **mobile:** add dynamic version display in settings ([df9b70c](https://github.com/typelets/typelets-app/commit/df9b70cb6b374f109a9d49702ee11b54edf17501))
21+
* **mobile:** enhance authentication flow and fix note viewing ([83ce1f8](https://github.com/typelets/typelets-app/commit/83ce1f806fcceb3a5e68ef7dbec4bfd8e4299475))
22+
123
## [1.21.1](https://github.com/typelets/typelets-app/compare/v1.21.0...v1.21.1) (2025-10-07)
224

325

apps/mobile/v1/app.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"expo": {
33
"name": "Typelets",
44
"slug": "typelets",
5-
"version": "1.0.3",
5+
"version": "1.1.0",
66
"orientation": "default",
77
"icon": "./assets/images/icon.png",
88
"scheme": "typelets",
@@ -28,7 +28,7 @@
2828
],
2929
"ios": {
3030
"bundleIdentifier": "com.typelets.notes",
31-
"buildNumber": "4",
31+
"buildNumber": "5",
3232
"supportsTablet": true,
3333
"infoPlist": {
3434
"NSCameraUsageDescription": "This app uses the camera to capture photos for your notes.",
@@ -38,7 +38,7 @@
3838
},
3939
"android": {
4040
"package": "com.typelets.notes",
41-
"versionCode": 4,
41+
"versionCode": 5,
4242
"softwareKeyboardLayoutMode": "resize",
4343
"adaptiveIcon": {
4444
"backgroundColor": "#FFFFFF",

apps/mobile/v1/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "v1",
33
"main": "expo-router/entry",
4-
"version": "1.0.3",
4+
"version": "1.1.0",
55
"scripts": {
66
"start": "expo start",
77
"reset-project": "node ./scripts/reset-project.js",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const APP_VERSION = '1.0.3-beta';
1+
export const APP_VERSION = '1.1.0';

src/constants/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const APP_VERSION = '1.21.1';
1+
export const APP_VERSION = '1.22.0';

0 commit comments

Comments
 (0)