From 9a28af4158c31ad52e3475b78c463615c141fe5a Mon Sep 17 00:00:00 2001 From: Pierre-Yves Ricau Date: Wed, 11 Sep 2024 15:58:46 -0700 Subject: [PATCH] Prepare 0.26 release --- CHANGELOG.md | 2 +- README.md | 2 +- gradle.properties | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fdc7af..30205e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ Change Log ========== -Version 0.25 +Version 0.26 _2024-09_11_ * Improve tracking on choreographer frame ends [#68](https://github.com/square/papa/pull/68). New interesting APIs: `MainThreadMessageSpy.currentMessageAsString`, `Handlers.onCurrentMainThreadMessageFinished()`, `prop by mainThreadMessageScopedLazy {}`, `Choreographers.postOnFrameRendered()`, `Choreographers.postOnWindowFrameRendered()` and `Choreographers.isInChoreographerFrame`. diff --git a/README.md b/README.md index feda29d..a3c2aec 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Add the `papa` dependency to your library or app's `build.gradle` file: ```gradle dependencies { - implementation 'com.squareup.papa:papa:0.25' + implementation 'com.squareup.papa:papa:0.26' } ``` diff --git a/gradle.properties b/gradle.properties index 2b9c70b..dfe33c0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.squareup.papa -VERSION_NAME=0.26-SNAPSHOT +VERSION_NAME=0.26 POM_DESCRIPTION=PAPA: Performance of Android Production Applications POM_INCEPTION_YEAR=2021