Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): v0.7.4 #314

Merged
merged 1 commit into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ val keystoreExits = keystorePropertiesFile.exists()
android {
namespace = "club.nito.app"
defaultConfig {
versionCode = 15
versionName = "0.7.3"
versionCode = 16
versionName = "0.7.4"
Comment on lines +20 to +21
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tip

Codebase Verification

MARKETING_VERSION0.7.4に更新されていることを確認しましたが、CURRENT_PROJECT_VERSIONの更新については確認できませんでした。iOSビルド設定におけるバージョン情報の一貫性を保つために、CURRENT_PROJECT_VERSIONも適切に更新されているか確認してください。

Analysis chain

バージョン情報の更新を確認しました。iOSビルド設定においても同様のバージョン更新が行われているか確認してください。


iOSビルド設定ファイルでのバージョン情報の更新を確認するために、検索条件を調整して再度スクリプトを実行します。

Scripts Executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# iOSビルド設定ファイルでバージョン情報の更新を検索
rg "CURRENT_PROJECT_VERSION = 13" --type plist
rg "MARKETING_VERSION = 0.7.4" --type plist

Length of output: 154



Script:

#!/bin/bash
# iOSビルド設定ファイルでバージョン情報の更新を検索(ファイルタイプ指定を省略)
rg "CURRENT_PROJECT_VERSION = 16"
rg "MARKETING_VERSION = 0.7.4"

Length of output: 384

}
signingConfigs {
create("dev") {
Expand Down
16 changes: 8 additions & 8 deletions app/ios/App/Nito/Nito.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 12;
CURRENT_PROJECT_VERSION = 13;
DEVELOPMENT_ASSET_PATHS = "\"Prod/Preview Content\"";
DEVELOPMENT_TEAM = V3Y8WJSRKA;
ENABLE_PREVIEWS = YES;
Expand All @@ -393,7 +393,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 0.7.3;
MARKETING_VERSION = 0.7.4;
OTHER_LDFLAGS = "$(inherited)";
PRODUCT_BUNDLE_IDENTIFIER = club.nito.App.Debug;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -409,7 +409,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 12;
CURRENT_PROJECT_VERSION = 13;
DEVELOPMENT_ASSET_PATHS = "\"Prod/Preview Content\"";
DEVELOPMENT_TEAM = V3Y8WJSRKA;
ENABLE_PREVIEWS = YES;
Expand All @@ -428,7 +428,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 0.7.3;
MARKETING_VERSION = 0.7.4;
OTHER_LDFLAGS = "$(inherited)";
PRODUCT_BUNDLE_IDENTIFIER = club.nito.App;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -444,7 +444,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 12;
CURRENT_PROJECT_VERSION = 13;
DEVELOPMENT_ASSET_PATHS = "\"Dev/Preview Content\"";
DEVELOPMENT_TEAM = V3Y8WJSRKA;
ENABLE_PREVIEWS = YES;
Expand All @@ -462,7 +462,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 0.7.3;
MARKETING_VERSION = 0.7.4;
OTHER_LDFLAGS = "$(inherited)";
PRODUCT_BUNDLE_IDENTIFIER = club.nito.App.Dev.Debug;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -478,7 +478,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 12;
CURRENT_PROJECT_VERSION = 13;
DEVELOPMENT_ASSET_PATHS = "\"Dev/Preview Content\"";
DEVELOPMENT_TEAM = V3Y8WJSRKA;
ENABLE_PREVIEWS = YES;
Expand All @@ -496,7 +496,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 0.7.3;
MARKETING_VERSION = 0.7.4;
OTHER_LDFLAGS = "$(inherited)";
PRODUCT_BUNDLE_IDENTIFIER = club.nito.App.Dev;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
Loading