diff --git a/CriteoAdViewer/Sources/Info.plist b/CriteoAdViewer/Sources/Info.plist index 8641a759..b36230dc 100644 --- a/CriteoAdViewer/Sources/Info.plist +++ b/CriteoAdViewer/Sources/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 5.0.4 + 6.0.0 CFBundleURLTypes diff --git a/CriteoAdViewer/UITests/Info.plist b/CriteoAdViewer/UITests/Info.plist index cf90cf64..25b4ec40 100644 --- a/CriteoAdViewer/UITests/Info.plist +++ b/CriteoAdViewer/UITests/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 5.0.4 + 6.0.0 CFBundleVersion 1 diff --git a/CriteoGoogleAdapter/Sources/CriteoGoogleAdapter/Info.plist b/CriteoGoogleAdapter/Sources/CriteoGoogleAdapter/Info.plist index 06836cc0..2b0458d7 100644 --- a/CriteoGoogleAdapter/Sources/CriteoGoogleAdapter/Info.plist +++ b/CriteoGoogleAdapter/Sources/CriteoGoogleAdapter/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 5.0.4 + 6.0.0 CFBundleVersion 1 diff --git a/CriteoGoogleAdapter/Tests/CriteoGoogleAdapterTests/Info.plist b/CriteoGoogleAdapter/Tests/CriteoGoogleAdapterTests/Info.plist index cf90cf64..25b4ec40 100644 --- a/CriteoGoogleAdapter/Tests/CriteoGoogleAdapterTests/Info.plist +++ b/CriteoGoogleAdapter/Tests/CriteoGoogleAdapterTests/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 5.0.4 + 6.0.0 CFBundleVersion 1 diff --git a/CriteoPublisherSdk.podspec b/CriteoPublisherSdk.podspec index c1d51954..541cf01e 100644 --- a/CriteoPublisherSdk.podspec +++ b/CriteoPublisherSdk.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = "CriteoPublisherSdk" - spec.version = "5.0.4" + spec.version = "6.0.0" spec.summary = "Criteo Publisher SDK for iOS" spec.description = <<-DESC diff --git a/CriteoPublisherSdk/Sources/Info.plist b/CriteoPublisherSdk/Sources/Info.plist index 06836cc0..2b0458d7 100644 --- a/CriteoPublisherSdk/Sources/Info.plist +++ b/CriteoPublisherSdk/Sources/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 5.0.4 + 6.0.0 CFBundleVersion 1 diff --git a/CriteoPublisherSdk/Sources/Public/CRConstants.h b/CriteoPublisherSdk/Sources/Public/CRConstants.h index 252c0fe1..ad879a09 100644 --- a/CriteoPublisherSdk/Sources/Public/CRConstants.h +++ b/CriteoPublisherSdk/Sources/Public/CRConstants.h @@ -20,7 +20,7 @@ #ifndef CRConstants_h #define CRConstants_h -#define CRITEO_PUBLISHER_SDK_VERSION @"5.0.4" +#define CRITEO_PUBLISHER_SDK_VERSION @"6.0.0" #define CRITEO_DEFAULT_REQUEST_TIMEOUT_IN_SECONDS 60 #define CRITEO_DEFAULT_BID_TTL_IN_SECONDS 15 * 60 diff --git a/CriteoPublisherSdk/Tests/CriteoPublisherSdkTests-Info.plist b/CriteoPublisherSdk/Tests/CriteoPublisherSdkTests-Info.plist index cf90cf64..25b4ec40 100644 --- a/CriteoPublisherSdk/Tests/CriteoPublisherSdkTests-Info.plist +++ b/CriteoPublisherSdk/Tests/CriteoPublisherSdkTests-Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 5.0.4 + 6.0.0 CFBundleVersion 1 diff --git a/CriteoPublisherSdk/iTestHostApp/Info.plist b/CriteoPublisherSdk/iTestHostApp/Info.plist index f046de90..03bb4525 100644 --- a/CriteoPublisherSdk/iTestHostApp/Info.plist +++ b/CriteoPublisherSdk/iTestHostApp/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 5.0.4 + 6.0.0 CFBundleVersion 1 LSRequiresIPhoneOS diff --git a/fastlane/README.md b/fastlane/README.md index 6b923744..6170a289 100644 --- a/fastlane/README.md +++ b/fastlane/README.md @@ -1,89 +1,128 @@ fastlane documentation -================ +---- + # Installation Make sure you have the latest version of the Xcode command line tools installed: -``` +```sh xcode-select --install ``` -Install _fastlane_ using -``` -[sudo] gem install fastlane -NV -``` -or alternatively using `brew install fastlane` +For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane) # Available Actions + ## iOS + ### ios test + +```sh +[bundle exec] fastlane ios test ``` -fastlane ios test -``` + Run tests: Run Unit & Functional tests with retries + ### ios test_0 + +```sh +[bundle exec] fastlane ios test_0 ``` -fastlane ios test_0 -``` + Run tests: Run Unit & Functional tests with retries + ### ios test_1 + +```sh +[bundle exec] fastlane ios test_1 ``` -fastlane ios test_1 -``` + Run tests: Run Unit & Functional tests with retries + ### ios test_2 + +```sh +[bundle exec] fastlane ios test_2 ``` -fastlane ios test_2 -``` + Run tests: Run Unit & Functional tests with retries + ### ios format_check + +```sh +[bundle exec] fastlane ios format_check ``` -fastlane ios format_check -``` + Check code format + ### ios format + +```sh +[bundle exec] fastlane ios format ``` -fastlane ios format -``` + Format code + ### ios lint_swift + +```sh +[bundle exec] fastlane ios lint_swift ``` -fastlane ios lint_swift -``` + Lint swift code + ### ios set_versions + +```sh +[bundle exec] fastlane ios set_versions ``` -fastlane ios set_versions -``` + Sets marketing and bundle versions to a Xcode project + ### ios version_bump + +```sh +[bundle exec] fastlane ios version_bump ``` -fastlane ios version_bump -``` + Sets cocoapods, marketing and bundle versions from a semver `version` and an optional `build` number + ### ios archive + +```sh +[bundle exec] fastlane ios archive ``` -fastlane ios archive -``` + Generates Debug & Release frameworks zip archives + ### ios github_release -``` -fastlane ios github_release + +```sh +[bundle exec] fastlane ios github_release ``` + + ### ios release_github + +```sh +[bundle exec] fastlane ios release_github ``` -fastlane ios release_github -``` + Archive then release version to GitHub + ### ios release_cocoapods + +```sh +[bundle exec] fastlane ios release_cocoapods ``` -fastlane ios release_cocoapods -``` + Release version to CocoaPods ---- This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run. -More information about fastlane can be found on [fastlane.tools](https://fastlane.tools). -The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools). + +More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools). + +The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).