Skip to content

Commit 8ecba1c

Browse files
committed
chore: bump app version to 0.96.0
1 parent b3f2e9b commit 8ecba1c

File tree

5 files changed

+26
-10
lines changed

5 files changed

+26
-10
lines changed

CHANGELOG.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.96.0] - 2024-07-25
11+
12+
### Changed
13+
14+
1. Switch the Firebase release to use the iframe test version [#3252](https://github.com/numbersprotocol/capture-lite/pull/3252)
15+
1. Replace the iframe FAQ with the GitBook FAQ [#3251](https://github.com/numbersprotocol/capture-lite/pull/3251)
16+
1. Update target API level for Android [#3249](https://github.com/numbersprotocol/capture-lite/pull/3249)
17+
- Update the app to target Android 14 (API level 34) to meet Google Play's target API level requirements
18+
- Upgrade Capacitor to v6 to set Android Target SDK 34
19+
- Update the code to resolve type hint errors
20+
21+
### Fixed
22+
23+
1. Fix the issue where the referral code is not included in the text when sharing in the zh setting [#3250](https://github.com/numbersprotocol/capture-lite/pull/3250)
24+
1025
## [0.95.1] - 2024-05-30
1126

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

2326-
[unreleased]: https://github.com/numbersprotocol/capture-lite/compare/0.95.1...HEAD
2341+
[unreleased]: https://github.com/numbersprotocol/capture-lite/compare/0.96.0...HEAD
2342+
[0.96.0]: https://github.com/numbersprotocol/capture-lite/compare/0.95.1...0.96.0
23272343
[0.95.1]: https://github.com/numbersprotocol/capture-lite/compare/0.95.0...0.95.1
23282344
[0.95.0]: https://github.com/numbersprotocol/capture-lite/compare/0.94.0...0.95.0
23292345
[0.94.0]: https://github.com/numbersprotocol/capture-lite/compare/0.93.0...0.94.0

android/app/build.gradle

+2-2
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 951
11-
versionName "0.95.1"
10+
versionCode 960
11+
versionName "0.96.0"
1212
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1313
}
1414
buildFeatures {

ios/App/App.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -372,13 +372,13 @@
372372
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
373373
CODE_SIGN_IDENTITY = "iPhone Distribution";
374374
CODE_SIGN_STYLE = Manual;
375-
CURRENT_PROJECT_VERSION = 951;
375+
CURRENT_PROJECT_VERSION = 960;
376376
DEVELOPMENT_TEAM = G7NB5YCKAP;
377377
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = G7NB5YCKAP;
378378
INFOPLIST_FILE = App/Info.plist;
379379
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
380380
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
381-
MARKETING_VERSION = 0.95.1;
381+
MARKETING_VERSION = 0.96.0;
382382
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
383383
PRODUCT_BUNDLE_IDENTIFIER = io.numbersprotocol.capturelite;
384384
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -399,13 +399,13 @@
399399
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
400400
CODE_SIGN_IDENTITY = "iPhone Distribution";
401401
CODE_SIGN_STYLE = Manual;
402-
CURRENT_PROJECT_VERSION = 951;
402+
CURRENT_PROJECT_VERSION = 960;
403403
DEVELOPMENT_TEAM = G7NB5YCKAP;
404404
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = G7NB5YCKAP;
405405
INFOPLIST_FILE = App/Info.plist;
406406
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
407407
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
408-
MARKETING_VERSION = 0.95.1;
408+
MARKETING_VERSION = 0.96.0;
409409
PRODUCT_BUNDLE_IDENTIFIER = io.numbersprotocol.capturelite;
410410
PRODUCT_NAME = "$(TARGET_NAME)";
411411
PROVISIONING_PROFILE_SPECIFIER = NumbersAppDistributionV6;

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "capture-lite",
3-
"version": "0.95.1",
3+
"version": "0.96.0",
44
"author": "numbersprotocol",
55
"homepage": "https://numbersprotocol.io/",
66
"scripts": {

0 commit comments

Comments
 (0)