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

Prepare for Snapshots release 0.8.1 #72

Merged
merged 1 commit into from
Sep 29, 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
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
Loading