From 36f34f1a98da02438b415e82ef0f9c9dfd95eb28 Mon Sep 17 00:00:00 2001 From: Travis Cobbs <77415528+tcobbs-bentley@users.noreply.github.com> Date: Thu, 14 Mar 2024 21:25:13 +0000 Subject: [PATCH] Update version to 0.22.3 --- README.md | 2 +- mobile-sdk/build.gradle | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 35f911d..58d3617 100644 --- a/README.md +++ b/README.md @@ -11,4 +11,4 @@ This is pre-release software and provided as-is. This repository contains the Kotlin code used to build [iTwin.js](http://www.itwinjs.org) applications on Android devices. This package requires Android API Level 28 (Android 9.0) or later. Most people will use binary builds of this package. If you want to build it yourself in order to contribute, please see [CONTRIBUTING.md](./CONTRIBUTING.md). ## Note -This package is designed to be used with the [@itwin/mobile-sdk-core](https://github.com/iTwin/mobile-sdk-core) and [@itwin/mobile-ui-react](https://github.com/iTwin/mobile-ui-react) packages. Those two packages are intended to be installed via npm, and their version number must match the version number of this package. Furthermore, they use __iTwin.js 4.4.3__, and your app must use that same version of iTwin.js. +This package is designed to be used with the [@itwin/mobile-sdk-core](https://github.com/iTwin/mobile-sdk-core) and [@itwin/mobile-ui-react](https://github.com/iTwin/mobile-ui-react) packages. Those two packages are intended to be installed via npm, and their version number must match the version number of this package. Furthermore, they use __iTwin.js 4.4.6__, and your app must use that same version of iTwin.js. diff --git a/mobile-sdk/build.gradle b/mobile-sdk/build.gradle index 2cb1640..fa5d146 100644 --- a/mobile-sdk/build.gradle +++ b/mobile-sdk/build.gradle @@ -17,7 +17,7 @@ android { minSdk 28 targetSdk 33 versionCode 1 - versionName '0.22.2' + versionName '0.22.3' testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' consumerProguardFiles 'consumer-rules.pro' @@ -90,7 +90,7 @@ afterEvaluate { from components.release groupId = 'com.github.itwin' artifactId = 'mobile-sdk-android' - version = '0.22.2' + version = '0.22.3' } // Creates a Maven publication called 'debug'. debug(MavenPublication) { @@ -98,7 +98,7 @@ afterEvaluate { artifact(sourceJar) groupId = 'com.github.itwin' artifactId = 'mobile-sdk-android' - version = '0.22.2-debug' + version = '0.22.3-debug' } } }