diff --git a/README.md b/README.md index 4a302c57..eff4cb31 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ repository contains all publicly available Emerge Android products and integrati | Artifact | Description | Latest | Min SDK | |-------------------------------------------------|-------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------| -| `com.emergetools.android` | Emerge Gradle Plugin | 2.0.1 | N/A | +| `com.emergetools.android` | Emerge Gradle Plugin | 2.1.0 | N/A | | `com.emergetools.test:performance` | Performance testing SDK | [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.emergetools.test/performance/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.emergetools.test/performance) | 23 | | `com.emergetools.snapshots:snapshots` | Snapshot testing SDK | [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.emergetools.snapshots/snapshots/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.emergetools.snapshots/snapshots) | 26 | | `com.emergetools.snapshots:snapshots-processor` | Snapshot KSP processor for Composable snapshots | [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.emergetools.snapshots/snapshots-processor/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.emergetools.snapshots/snapshots) | N/A | diff --git a/gradle-plugin/CHANGELOG.md b/gradle-plugin/CHANGELOG.md index 689ed62d..921133b3 100644 --- a/gradle-plugin/CHANGELOG.md +++ b/gradle-plugin/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 2.1.0 - 2023-10-05 + +### Changed + +- [Breaking] Moves emergeLocalTest task to app + module. [#76](https://github.com/EmergeTools/emerge-android/pull/76) +- Updates AGP, Kotlin & KSP versions. [#74](https://github.com/EmergeTools/emerge-android/pull/74) + ## 2.0.1 - 2023-09-07 ### Fixed diff --git a/gradle-plugin/README.md b/gradle-plugin/README.md index bd962463..3ccf70ed 100644 --- a/gradle-plugin/README.md +++ b/gradle-plugin/README.md @@ -28,7 +28,7 @@ In your application-level `build.gradle(.kts)`: ```kotlin build.gradle.kts (app) plugins { - id("com.emergetools.android") version "2.0.1" + id("com.emergetools.android") version "{latest_version}" } emerge { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 6f81fb94..771ac888 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -14,7 +14,7 @@ okhttp = "4.10.0" junit-jupiter = "5.8.2" # internal -emerge-gradle-plugin = "2.0.1" +emerge-gradle-plugin = "2.1.0" emerge-peformance = "2.1.1" emerge-snapshots = "0.8.1"