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

version bump & changelog update #316

Merged
merged 1 commit into from
Oct 25, 2023
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Criteo Publisher SDK Changelog
--------------------------------------------------------------------------------

## Version [5.0.4]

### Features
- TCF 2.2 updates.

--------------------------------------------------------------------------------

## Version [5.0.3]

### Features
Expand Down
2 changes: 1 addition & 1 deletion CriteoAdViewer/Sources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>5.0.3</string>
<string>5.0.4</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand Down
2 changes: 1 addition & 1 deletion CriteoAdViewer/UITests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>5.0.3</string>
<string>5.0.4</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>5.0.3</string>
<string>5.0.4</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>5.0.3</string>
<string>5.0.4</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion CriteoPublisherSdk.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "CriteoPublisherSdk"
spec.version = "5.0.3"
spec.version = "5.0.4"
spec.summary = "Criteo Publisher SDK for iOS"

spec.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion CriteoPublisherSdk/Sources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>5.0.3</string>
<string>5.0.4</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion CriteoPublisherSdk/Sources/Public/CRConstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#ifndef CRConstants_h
#define CRConstants_h

#define CRITEO_PUBLISHER_SDK_VERSION @"5.0.3"
#define CRITEO_PUBLISHER_SDK_VERSION @"5.0.4"

#define CRITEO_DEFAULT_REQUEST_TIMEOUT_IN_SECONDS 60
#define CRITEO_DEFAULT_BID_TTL_IN_SECONDS 15 * 60
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>5.0.3</string>
<string>5.0.4</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion CriteoPublisherSdk/iTestHostApp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>5.0.3</string>
<string>5.0.4</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
Expand Down
88 changes: 59 additions & 29 deletions fastlane/README.md
Original file line number Diff line number Diff line change
@@ -1,74 +1,104 @@
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 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

```sh
[bundle exec] fastlane ios github_release
```
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).
Loading