From a6a1b7cb1f24d7fa8350aa23e04e7cd056558460 Mon Sep 17 00:00:00 2001 From: typhon0 Date: Fri, 25 Sep 2020 11:36:49 +0200 Subject: [PATCH] version jump --- README.md | 30 ++++++++++++++++++------------ animatefx/build.gradle | 2 +- 2 files changed, 19 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 8ea2483..e498e8c 100644 --- a/README.md +++ b/README.md @@ -1,48 +1,53 @@ [![Build Status](https://travis-ci.org/Typhon0/AnimateFX.svg?branch=master)](https://travis-ci.org/Typhon0/AnimateFX) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Bintray](https://api.bintray.com/packages/typhon0/AnimateFX/animatefx/images/download.svg)](https://bintray.com/typhon0/AnimateFX/animatefx) -[![javadoc](https://javadoc.io/badge2/io.github.typhon0/AnimateFX/javadoc.svg)](https://javadoc.io/doc/io.github.typhon0/AnimateFX) +[![javadoc](https://javadoc.io/badge2/io.github.typhon0/AnimateFX/javadoc.svg)](https://javadoc.io/doc/io.github.typhon0/AnimateFX) [![Join the chat at https://gitter.im/AnimateFX/Lobby](https://badges.gitter.im/AnimateFX/Lobby.svg)](https://gitter.im/AnimateFX/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) # AnimateFX + A library of ready-to-use animations for JavaFX Features: -* Custom animations -* Custom interpolators -* Play/Stop animation -* Play an animation after another -* More to come +- Custom animations +- Custom interpolators +- Play/Stop animation +- Play an animation after another +- More to come # Installation ### Gradle + ``` dependencies { -compile 'io.github.typhon0:AnimateFX:1.2.1' +compile 'io.github.typhon0:AnimateFX:1.2.2' } ``` + ### Maven ``` io.github.typhon0 AnimateFX - 1.2.1 + 1.2.2 pom ``` + ## Snapshot ### Gradle + ``` repositories { maven { url 'https://oss.jfrog.org/artifactory/oss-snapshot-local' } } dependencies { - compile('group.id:animatefx:1.2.1-SNAPSHOT') + compile('group.id:animatefx:1.2.2-SNAPSHOT') } ``` @@ -56,15 +61,16 @@ dependencies { https://oss.jfrog.org/artifactory/libs-snapshot - + io.github.typhon0 AnimateFX - 1.2.1-SNAPSHOT + 1.2.2-SNAPSHOT ``` + # Quick start #### Basic @@ -85,7 +91,7 @@ new Bounce(text).play(); # Contributing -Please see [CONTRIBUTING.md](https://github.com/Typhon0/AnimateFX/blob/master/CONTRIBUTING.md) for more information. +Please see [CONTRIBUTING.md](https://github.com/Typhon0/AnimateFX/blob/master/CONTRIBUTING.md) for more information. # Credits diff --git a/animatefx/build.gradle b/animatefx/build.gradle index 0ad5872..7515a3a 100644 --- a/animatefx/build.gradle +++ b/animatefx/build.gradle @@ -9,7 +9,7 @@ repositories { jcenter() } -version = '1.2.1' + (Boolean.valueOf(System.getProperty("snapshot")) ? "-SNAPSHOT" : "") +version = '1.2.2' + (Boolean.valueOf(System.getProperty("snapshot")) ? "-SNAPSHOT" : "") sourceCompatibility = 1.8 dependencies {