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

Release version with the correct publishing #32

Merged
merged 1 commit into from
Jan 31, 2024
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 CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## v0.2.4
## v0.2.5
* Fix memory leak associated with infinite pulse animation

## v0.2.3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ An Android animation framework that gracefully handles interruptions. Currently

## Use
```groovy
def blendVersion = "0.2.3"
def blendVersion = "0.2.5"
implementation "com.wealthfront:blend:${blendVersion}"
testImplementation "com.wealthfront:blend-test:${blendVersion}"
```
Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
- Push this tag to GitHub: `git push && git push --tags`

5. Someone with the necessary permissions publishes the repo:
- `./gradlew clean publish`
- `./gradlew clean publish -Dorg.gradle.parallel=false`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks for updating this

- Visit [Sonatype Nexus](https://oss.sonatype.org/) and promote the artifact.
If this step fails: drop the Sonatype repo, fix the problem, commit, and start again.
Visit [Maven Central Repository Search](https://search.maven.org/search?q=screencaptor) to verify the artifact is live. Note that it may take a few hours.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ android.enableJetifier=true
kotlin.code.style=official

GROUP=com.wealthfront
VERSION_NAME=0.2.4
VERSION_NAME=0.2.5

POM_DESCRIPTION=Animation library that gracefully handles interruptions

Expand Down
Loading