Skip to content

Commit

Permalink
Prepare version 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
John Rodriguez committed Jul 18, 2023
1 parent 04257ab commit 104003e
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 5 deletions.
31 changes: 30 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,34 @@

## [Unreleased]

## [1.3.1] - 2023-07-18

### New
* Migrated to new resource and asset loading mechanisms. To explicitly opt-out and fall back to the
legacy mechanisms, add either/both of the following to your `gradle.properties`:
```
app.cash.paparazzi.legacy.resource.loading=true
app.cash.paparazzi.legacy.asset.loading=true
```

* The Android system ui (status + navigation bar) is now hidden by default; to re-enable:
```
@get:Rule
val paparazzi = Paparazzi(
showSystemUi = true
)
```

* Relocate failure deltas from `PROJECT_ROOT/out/failures/` to `BUILD_DIR/paparazzi/failures/`
* Support for application and dynamic feature modules
* [Gradle Plugin] Gradle 8.2.1

### Fixed
* Fix accessibility labels when mergeDescendants is true
* Fixes compose alert dialogs not rendering when using RenderingMode.SHRINK

Kudos to @kevinzheng-ap, @adamalyyan and others for contributions this release!

## [1.3.0] - 2023-05-31

As of this release, consumers must build on Java 17+ environments.
Expand Down Expand Up @@ -236,7 +264,8 @@ As of this release, consumers must build on Java 11 environments.



[Unreleased]: https://github.com/cashapp/paparazzi/compare/1.3.0...HEAD
[Unreleased]: https://github.com/cashapp/paparazzi/compare/1.3.1...HEAD
[1.3.1]: https://github.com/cashapp/paparazzi/releases/tag/1.3.1
[1.3.0]: https://github.com/cashapp/paparazzi/releases/tag/1.3.0
[1.2.0]: https://github.com/cashapp/paparazzi/releases/tag/1.2.0
[1.1.0]: https://github.com/cashapp/paparazzi/releases/tag/1.1.0
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ android.jetifier.ignorelist=android-base-common,common
Lottie
--------

When taking screenshots of Lottie animations, you need to force Lottie to not run on a background thread, otherwise Paparazzi can throw exceptions [#494](https://github.com/cashapp/paparazzi/issues/494), [#630](https://github.com/cashapp/paparazzi/issues/630).
When taking screenshots of Lottie animations, you need to force Lottie to not run on a background thread, otherwise Paparazzi can throw exceptions [#494](https://github.com/cashapp/paparazzi/issues/494), [#630](https://github.com/cashapp/paparazzi/issues/630).

```kotlin
@Before
Expand All @@ -129,7 +129,7 @@ buildscript {
google()
}
dependencies {
classpath 'app.cash.paparazzi:paparazzi-gradle-plugin:1.3.0'
classpath 'app.cash.paparazzi:paparazzi-gradle-plugin:1.3.1'
}
}
Expand All @@ -139,7 +139,7 @@ apply plugin: 'app.cash.paparazzi'
Using the plugins DSL:
```groovy
plugins {
id 'app.cash.paparazzi' version '1.3.0'
id 'app.cash.paparazzi' version '1.3.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=app.cash.paparazzi
VERSION_NAME=1.3.1-SNAPSHOT
VERSION_NAME=1.3.1

POM_URL=https://github.com/cashapp/paparazzi/
POM_SCM_URL=https://github.com/cashapp/paparazzi/
Expand Down

0 comments on commit 104003e

Please sign in to comment.