Skip to content

Files

Latest commit

 

History

History
27 lines (15 loc) · 1.25 KB

RELEASE.md

File metadata and controls

27 lines (15 loc) · 1.25 KB

Package Release Notes

This section refers to the process of maintaining, upgrading and publishing the current library.

Releasing a new version

  1. Create a PR to update the CHANGELOG in order to mention the changes made in the new version. This is optional, if this step is skipped, the setupversion.sh will create a generic entry.

  2. Merge all changes into main.

  3. Navigate to the Set package version action and run it by setting the next version. Please note: this must be the same if you manually created a release entry in CHANGELOG.md.

🏁

Adopting newer versions of the native SDKs

The Flutter SDK depends on the latest major version of the native SDKs. This is defined in the following locations:

On Android, the dependency is configured in android/build.gradle:

implementation 'com.telemetrydeck:kotlin-sdk:2.2.0'

On iOS, the dependency is configured in ios/telemetrydecksdk.podspec using the podspect Dependency format s.dependency 'TelemetryClient', '~> 2.0'.

Note: CocoaPods requires running pod update to fetch the latest version of the native SDK for both iOS and macOS. You can do so in the ios and macOS folders of the example project.