Skip to content

Commit 8d0bc6d

Browse files
committed
chore: bump app version to 0.103.0
1 parent 494b527 commit 8d0bc6d

File tree

5 files changed

+27
-12
lines changed

5 files changed

+27
-12
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.103.0] - 2025-08-27
11+
12+
### Changed
13+
14+
1. Migrate account deletion from Pipedream webhook to backend DELETE /auth/users/me/ endpoint [#3345](https://github.com/numbersprotocol/capture-cam/pull/3345)
15+
16+
### Fixed
17+
18+
1. Set Xcode 16.4 to resolve SDK issues in CI [#3345](https://github.com/numbersprotocol/capture-cam/pull/3345)
19+
20+
### Chore
21+
22+
1. Update README.md documentation
23+
1024
## [0.102.0] - 2025-08-06
1125

1226
### Added
@@ -2452,7 +2466,8 @@ This is the first release! _Capture Lite_ is a cross-platform app adapted from [
24522466
- Web - see the demo [here](https://github.com/numbersprotocol/capture-lite#demo-app)
24532467
- Android - the APK file `app-debug.apk` is attached to this release
24542468

2455-
[unreleased]: https://github.com/numbersprotocol/capture-lite/compare/0.102.0...HEAD
2469+
[unreleased]: https://github.com/numbersprotocol/capture-lite/compare/0.103.0...HEAD
2470+
[0.103.0]: https://github.com/numbersprotocol/capture-lite/compare/0.102.0...0.103.0
24562471
[0.102.0]: https://github.com/numbersprotocol/capture-lite/compare/0.101.1...0.102.0
24572472
[0.101.1]: https://github.com/numbersprotocol/capture-lite/compare/0.101.0...0.101.1
24582473
[0.101.0]: https://github.com/numbersprotocol/capture-lite/compare/0.100.0...0.101.0

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 "io.numbersprotocol.capturelite"
88
minSdkVersion rootProject.ext.minSdkVersion
99
targetSdkVersion rootProject.ext.targetSdkVersion
10-
versionCode 1020
11-
versionName "0.102.0"
10+
versionCode 1030
11+
versionName "0.103.0"
1212
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1313
}
1414
buildFeatures {

ios/App/App.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -388,13 +388,13 @@
388388
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
389389
CODE_SIGN_IDENTITY = "iPhone Distribution";
390390
CODE_SIGN_STYLE = Manual;
391-
CURRENT_PROJECT_VERSION = 1020;
391+
CURRENT_PROJECT_VERSION = 1030;
392392
DEVELOPMENT_TEAM = G7NB5YCKAP;
393393
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = G7NB5YCKAP;
394394
INFOPLIST_FILE = App/Info.plist;
395395
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
396396
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
397-
MARKETING_VERSION = 0.102.0;
397+
MARKETING_VERSION = 0.103.0;
398398
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
399399
PRODUCT_BUNDLE_IDENTIFIER = io.numbersprotocol.capturelite;
400400
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -415,13 +415,13 @@
415415
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
416416
CODE_SIGN_IDENTITY = "iPhone Distribution";
417417
CODE_SIGN_STYLE = Manual;
418-
CURRENT_PROJECT_VERSION = 1020;
418+
CURRENT_PROJECT_VERSION = 1030;
419419
DEVELOPMENT_TEAM = G7NB5YCKAP;
420420
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = G7NB5YCKAP;
421421
INFOPLIST_FILE = App/Info.plist;
422422
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
423423
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
424-
MARKETING_VERSION = 0.102.0;
424+
MARKETING_VERSION = 0.103.0;
425425
PRODUCT_BUNDLE_IDENTIFIER = io.numbersprotocol.capturelite;
426426
PRODUCT_NAME = "$(TARGET_NAME)";
427427
PROVISIONING_PROFILE_SPECIFIER = NumbersAppDistributionV6;

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "capture-lite",
3-
"version": "0.102.0",
3+
"version": "0.103.0",
44
"author": "numbersprotocol",
55
"homepage": "https://numbersprotocol.io/",
66
"scripts": {
77
"ng": "ng",
8-
"preconfig": "node set-secret.js && node set-npmrc.js",
9-
"preconfig.npmrc": "node set-npmrc.js",
8+
"preconfig": "export $(cat .env | xargs) && node set-secret.js && node set-npmrc.js",
9+
"preconfig.npmrc": "export $(cat .env | xargs) && node set-npmrc.js",
1010
"serve": "npm run preconfig && ionic serve",
1111
"serve.prod": "npm run preconfig && ionic serve --configuration production",
1212
"build": "npm run preconfig && ionic build --configuration production",

0 commit comments

Comments
 (0)