Skip to content

Commit c0014e1

Browse files
committed
chore: bump app version to 0.101.0
1 parent e78aa23 commit c0014e1

File tree

5 files changed

+27
-10
lines changed

5 files changed

+27
-10
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.101.0] - 2025-03-29
11+
12+
### Added
13+
14+
1. Support Google account for login and sign-up [#3328](https://github.com/numbersprotocol/capture-lite/pull/3328)
15+
16+
### Changed
17+
18+
1. Upgrade Capacitor to v7 [#3328](https://github.com/numbersprotocol/capture-lite/pull/3328)
19+
20+
### Fixed
21+
22+
1. Fix the persistent popup tutorial [#3328](https://github.com/numbersprotocol/capture-lite/pull/3328)
23+
2. Fix the typo on the signup page [#3327](https://github.com/numbersprotocol/capture-lite/pull/3327)
24+
3. Fix the persistent migration popup dialog caused by incorrect string version comparison [#3325](https://github.com/numbersprotocol/capture-lite/pull/3325)
25+
1026
## [0.100.0] - 2025-02-13
1127

1228
### Changed
@@ -2408,7 +2424,8 @@ This is the first release! _Capture Lite_ is a cross-platform app adapted from [
24082424
- Web - see the demo [here](https://github.com/numbersprotocol/capture-lite#demo-app)
24092425
- Android - the APK file `app-debug.apk` is attached to this release
24102426

2411-
[unreleased]: https://github.com/numbersprotocol/capture-lite/compare/0.100.0...HEAD
2427+
[unreleased]: https://github.com/numbersprotocol/capture-lite/compare/0.101.0...HEAD
2428+
[0.101.0]: https://github.com/numbersprotocol/capture-lite/compare/0.100.0...0.101.0
24122429
[0.100.0]: https://github.com/numbersprotocol/capture-lite/compare/0.99.0...0.100.0
24132430
[0.99.0]: https://github.com/numbersprotocol/capture-lite/compare/0.98.0...0.99.0
24142431
[0.98.0]: https://github.com/numbersprotocol/capture-lite/compare/0.97.1...0.98.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 1000
11-
versionName "0.100.0"
10+
versionCode 1010
11+
versionName "0.101.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 = 1000;
391+
CURRENT_PROJECT_VERSION = 1010;
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.100.0;
397+
MARKETING_VERSION = 0.101.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 = 1000;
418+
CURRENT_PROJECT_VERSION = 1010;
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.100.0;
424+
MARKETING_VERSION = 0.101.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "capture-lite",
3-
"version": "0.100.0",
3+
"version": "0.101.0",
44
"author": "numbersprotocol",
55
"homepage": "https://numbersprotocol.io/",
66
"scripts": {

0 commit comments

Comments
 (0)