Skip to content

Commit

Permalink
Prepare for Snapshots release 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rbro112 committed Sep 29, 2023
1 parent fc89bdd commit 645eca7
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ junit-jupiter = "5.8.2"
# internal
emerge-gradle-plugin = "2.0.1"
emerge-peformance = "2.1.1"
emerge-snapshots = "0.8.0"
emerge-snapshots = "0.8.1"

[plugins]
android-application = { id = "com.android.application", version.ref = "agp" }
Expand Down
13 changes: 13 additions & 0 deletions snapshots/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ All notable changes to snapshots & snapshots-processor will be documented in thi
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).

## 0.8.1 - 2023-09-28

### Added

- Multipreview support from multipreviews that live in
submodules. [#69](https://github.com/EmergeTools/emerge-android/pull/69)
- Stacked multipreview support. [#71](https://github.com/EmergeTools/emerge-android/pull/71)

### Fixed

- Bug in locale varaints not reflecting locale due to resources not
updating. [#70](https://github.com/EmergeTools/emerge-android/pull/70)

## 0.8.0 - 2023-08-31

### Added
Expand Down
12 changes: 6 additions & 6 deletions snapshots/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Add the Emerge Gradle plugin to your application's `build.gradle.kts` file:

```kotlin
plugins {
id("com.emergetools.android") version "2.0.1"
id("com.emergetools.android")
}

emerge {
Expand All @@ -40,9 +40,9 @@ plugins {
}

dependencies {
androidTestImplementation("com.emergetools.snapshots:snapshots:0.8.0")
androidTestImplementation("com.emergetools.snapshots:snapshots:0.8.1")
// For Compose @Preview snapshot generation from the main source set:
ksp("com.emergetools.snapshots:snapshots-processor:0.8.0")
ksp("com.emergetools.snapshots:snapshots-processor:0.8.1")
}
```

Expand Down Expand Up @@ -114,7 +114,7 @@ the `snapshots-processor` leverages.

```kotlin
dependencies {
implementation("com.emergetools.snapshots:snapshots-annotations:0.7.2")
implementation("com.emergetools.snapshots:snapshots-annotations:0.8.1")
}
```

Expand All @@ -128,7 +128,7 @@ snapshot tests from the `androidTest` source set.

```kotlin
plugins {
id("com.emergetools.android") version "2.0.1"
id("com.emergetools.android")
id("com.google.devtools.ksp")
}

Expand Down Expand Up @@ -198,7 +198,7 @@ Add the Emerge gradle plugin to your app-level `build.gradle(.kts)` file:

```kotlin
plugins {
id("com.emergetools.android") version "2.0.1"
id("com.emergetools.android")
}

emerge {
Expand Down

0 comments on commit 645eca7

Please sign in to comment.