Skip to content

Commit 245ca26

Browse files
committed
chore: bump app version to 0.93.0
1 parent d82d8b4 commit 245ca26

File tree

5 files changed

+20
-10
lines changed

5 files changed

+20
-10
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.93.0] - 2024-04-25
11+
12+
### Changed
13+
14+
1. Change explorer tab to collection tab, replacing iframe URL and icon [#3243](https://github.com/numbersprotocol/capture-lite/pull/3243)
15+
1. Update the URL format of the asset profile from
16+
`/asset-profile?nid=${nid}` to `/asset-profile/${nid}` [#3242](https://github.com/numbersprotocol/capture-lite/pull/3242)
17+
1. Remove the unused `tmp_token` from the asset profile URL [#3242](https://github.com/numbersprotocol/capture-lite/pull/3242)
18+
1019
## [0.92.0] - 2024-04-18
1120

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

2291-
[unreleased]: https://github.com/numbersprotocol/capture-lite/compare/0.92.0...HEAD
2300+
[unreleased]: https://github.com/numbersprotocol/capture-lite/compare/0.93.0...HEAD
2301+
[0.92.0]: https://github.com/numbersprotocol/capture-lite/compare/0.92.0...0.93.0
22922302
[0.92.0]: https://github.com/numbersprotocol/capture-lite/compare/0.91.0...0.92.0
22932303
[0.91.0]: https://github.com/numbersprotocol/capture-lite/compare/0.90.0...0.91.0
22942304
[0.90.0]: https://github.com/numbersprotocol/capture-lite/compare/0.89.2...0.90.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 920
11-
versionName "0.92.0"
10+
versionCode 930
11+
versionName "0.93.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
@@ -368,13 +368,13 @@
368368
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
369369
CODE_SIGN_IDENTITY = "iPhone Distribution";
370370
CODE_SIGN_STYLE = Manual;
371-
CURRENT_PROJECT_VERSION = 920;
371+
CURRENT_PROJECT_VERSION = 930;
372372
DEVELOPMENT_TEAM = G7NB5YCKAP;
373373
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = G7NB5YCKAP;
374374
INFOPLIST_FILE = App/Info.plist;
375375
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
376376
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
377-
MARKETING_VERSION = 0.92.0;
377+
MARKETING_VERSION = 0.93.0;
378378
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
379379
PRODUCT_BUNDLE_IDENTIFIER = io.numbersprotocol.capturelite;
380380
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -395,13 +395,13 @@
395395
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
396396
CODE_SIGN_IDENTITY = "iPhone Distribution";
397397
CODE_SIGN_STYLE = Manual;
398-
CURRENT_PROJECT_VERSION = 920;
398+
CURRENT_PROJECT_VERSION = 930;
399399
DEVELOPMENT_TEAM = G7NB5YCKAP;
400400
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = G7NB5YCKAP;
401401
INFOPLIST_FILE = App/Info.plist;
402402
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
403403
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
404-
MARKETING_VERSION = 0.92.0;
404+
MARKETING_VERSION = 0.93.0;
405405
PRODUCT_BUNDLE_IDENTIFIER = io.numbersprotocol.capturelite;
406406
PRODUCT_NAME = "$(TARGET_NAME)";
407407
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.92.0",
3+
"version": "0.93.0",
44
"author": "numbersprotocol",
55
"homepage": "https://numbersprotocol.io/",
66
"scripts": {

0 commit comments

Comments
 (0)