diff --git a/CHANGELOG.md b/CHANGELOG.md index a773ca1..4327797 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to V2er iOS app will be documented in this file. +## v1.1.19 (Build XX) +1. Infrastructure: Migrate certificate management to shared ios-certificates repository +2. Improvement: Update Fastlane Match to use git@github.com:graycreate/ios-certificates.git +3. Test: Verify release pipeline works with new Match repository configuration + ## v1.1.18 (Build XX) 1. Improvement: Upgrade all CI/CD workflows to use Xcode 26.0.1 (latest version) 2. Improvement: Use macOS 26 runners with Fastlane 2.228.0 for improved build performance diff --git a/V2er/Config/Version.xcconfig b/V2er/Config/Version.xcconfig index c39ae48..ce88aff 100644 --- a/V2er/Config/Version.xcconfig +++ b/V2er/Config/Version.xcconfig @@ -6,7 +6,7 @@ // VERSION_CODE: Build number (must always increase) // VERSION_NAME - This is what users see (e.g., 1.1.2) -MARKETING_VERSION = 1.1.18 +MARKETING_VERSION = 1.1.19 // VERSION_CODE - Internal build number (e.g., 29, 30, 31...) CURRENT_PROJECT_VERSION = 51 diff --git a/fastlane/Fastfile b/fastlane/Fastfile index daf379c..33982d4 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -61,7 +61,7 @@ platform :ios do type: "appstore", readonly: is_ci, app_identifier: "v2er.app", - git_url: ENV["MATCH_GIT_URL"] || "git@github.com:graycreate/certificates-v2er-iOS.git", + git_url: ENV["MATCH_GIT_URL"] || "git@github.com:graycreate/ios-certificates.git", keychain_name: ENV["MATCH_KEYCHAIN_NAME"] || "login.keychain", keychain_password: ENV["MATCH_KEYCHAIN_PASSWORD"] || "" ) diff --git a/fastlane/Matchfile b/fastlane/Matchfile index 299224c..d6b60ac 100644 --- a/fastlane/Matchfile +++ b/fastlane/Matchfile @@ -1,7 +1,7 @@ # Matchfile - Configuration for code signing # Git repository URL for storing certificates -git_url(ENV["MATCH_GIT_URL"] || "git@github.com:graycreate/certificates-v2er-iOS.git") +git_url(ENV["MATCH_GIT_URL"] || "git@github.com:graycreate/ios-certificates.git") # Storage mode storage_mode("git")