mirror of
https://github.com/selfxyz/self.git
synced 2026-01-10 23:27:56 -05:00
Bump version to 2.5.1 (#522)
* bump version * update fastlane * fix bump version * bump build and add todo * disable commit for now
This commit is contained in:
6
.github/workflows/mobile-deploy.yml
vendored
6
.github/workflows/mobile-deploy.yml
vendored
@@ -353,7 +353,8 @@ jobs:
|
||||
app_path: ${{ env.APP_PATH }}
|
||||
|
||||
- name: Commit updated build number
|
||||
if: ${{ !env.ACT }}
|
||||
# disable for now, commit doesn't work as expected
|
||||
if: false #${{ !env.ACT }}
|
||||
uses: ./.github/actions/push-changes
|
||||
with:
|
||||
commit_message: "incrementing ios build number for version ${{ env.VERSION }}"
|
||||
@@ -479,7 +480,8 @@ jobs:
|
||||
app_path: ${{ env.APP_PATH }}
|
||||
|
||||
- name: Commit updated build version
|
||||
if: ${{ !env.ACT }}
|
||||
# disable for now, commit doesn't work as expected
|
||||
if: false #${{ !env.ACT }}
|
||||
uses: ./.github/actions/push-changes
|
||||
with:
|
||||
commit_message: "incrementing android build version for version ${{ env.VERSION }}"
|
||||
|
||||
@@ -25,17 +25,18 @@ GEM
|
||||
artifactory (3.0.17)
|
||||
atomos (0.1.3)
|
||||
aws-eventstream (1.3.2)
|
||||
aws-partitions (1.1069.0)
|
||||
aws-sdk-core (3.220.1)
|
||||
aws-partitions (1.1088.0)
|
||||
aws-sdk-core (3.222.2)
|
||||
aws-eventstream (~> 1, >= 1.3.0)
|
||||
aws-partitions (~> 1, >= 1.992.0)
|
||||
aws-sigv4 (~> 1.9)
|
||||
base64
|
||||
jmespath (~> 1, >= 1.6.1)
|
||||
logger
|
||||
aws-sdk-kms (1.99.0)
|
||||
aws-sdk-core (~> 3, >= 3.216.0)
|
||||
aws-sigv4 (~> 1.5)
|
||||
aws-sdk-s3 (1.182.0)
|
||||
aws-sdk-s3 (1.183.0)
|
||||
aws-sdk-core (~> 3, >= 3.216.0)
|
||||
aws-sdk-kms (~> 1)
|
||||
aws-sigv4 (~> 1.5)
|
||||
@@ -129,7 +130,7 @@ GEM
|
||||
faraday_middleware (1.2.1)
|
||||
faraday (~> 1.0)
|
||||
fastimage (2.4.0)
|
||||
fastlane (2.227.0)
|
||||
fastlane (2.227.1)
|
||||
CFPropertyList (>= 2.3, < 4.0.0)
|
||||
addressable (>= 2.8, < 3.0.0)
|
||||
artifactory (~> 3.0)
|
||||
@@ -169,7 +170,7 @@ GEM
|
||||
tty-spinner (>= 0.8.0, < 1.0.0)
|
||||
word_wrap (~> 1.0.0)
|
||||
xcodeproj (>= 1.13.0, < 2.0.0)
|
||||
xcpretty (~> 0.4.0)
|
||||
xcpretty (~> 0.4.1)
|
||||
xcpretty-travis-formatter (>= 0.0.3, < 2.0.0)
|
||||
fastlane-plugin-increment_version_code (0.4.3)
|
||||
fastlane-plugin-versioning_android (0.1.1)
|
||||
@@ -292,7 +293,7 @@ GEM
|
||||
colored2 (~> 3.1)
|
||||
nanaimo (~> 0.4.0)
|
||||
rexml (>= 3.3.6, < 4.0)
|
||||
xcpretty (0.4.0)
|
||||
xcpretty (0.4.1)
|
||||
rouge (~> 3.28.0)
|
||||
xcpretty-travis-formatter (1.0.1)
|
||||
xcpretty (~> 0.2, >= 0.0.7)
|
||||
|
||||
@@ -85,8 +85,8 @@ android {
|
||||
applicationId "com.proofofpassportapp"
|
||||
minSdkVersion rootProject.ext.minSdkVersion
|
||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||
versionCode 53
|
||||
versionName "2.5.0"
|
||||
versionCode 54
|
||||
versionName "2.5.1"
|
||||
externalNativeBuild {
|
||||
cmake {
|
||||
cppFlags += "-fexceptions -frtti -std=c++11"
|
||||
@@ -162,4 +162,4 @@ dependencies {
|
||||
implementation "androidx.profileinstaller:profileinstaller:1.3.1"
|
||||
|
||||
implementation "com.google.android.play:app-update:2.1.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -59,6 +59,7 @@ platform :ios do
|
||||
upload_to_testflight(
|
||||
api_key: result[:api_key],
|
||||
distribute_external: true,
|
||||
# TODO: fix error about the groups not being set correctly, fwiw groups are set in the app store connect
|
||||
groups: ENV["IOS_TESTFLIGHT_GROUPS"].split(","),
|
||||
changelog: "",
|
||||
skip_waiting_for_build_processing: false,
|
||||
@@ -207,7 +208,7 @@ platform :android do
|
||||
lane :sync_version do
|
||||
android_set_version_name(
|
||||
version_name: package_version,
|
||||
gradle_file: android_gradle_file_path,
|
||||
gradle_file: android_gradle_file_path.gsub("../", ""),
|
||||
)
|
||||
end
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>$(MARKETING_VERSION)</string>
|
||||
<string>2.5.1</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "openpassport",
|
||||
"version": "2.4.9",
|
||||
"version": "2.5.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"analyze:android": "yarn reinstall && react-native-bundle-visualizer --platform android --dev",
|
||||
|
||||
Reference in New Issue
Block a user