From 9c18a511042c4f5339cc0333f00c7ab48682732c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Mion?= Date: Mon, 5 Oct 2020 19:34:04 +0100 Subject: [PATCH] Release 1.3.0 --- README.md | 6 +++--- gradle.properties | 6 +++--- sample/build.gradle | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 678c098..8ff5c38 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ [![License Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg?style=true)](http://www.apache.org/licenses/LICENSE-2.0) ![minSdkVersion 19](https://img.shields.io/badge/minSdkVersion-19-red.svg?style=true) ![compileSdkVersion 30](https://img.shields.io/badge/compileSdkVersion-30-yellow.svg?style=true) -[![maven-central](https://img.shields.io/maven-central/v/com.github.andremion/floatingnavigationview.svg)](https://search.maven.org/#artifactdetails%7Ccom.github.andremion%7Cfloatingnavigationview%7C1.2.0%7Caar) +[![maven-central](https://img.shields.io/maven-central/v/com.github.andremion/floatingnavigationview.svg)](https://search.maven.org/#artifactdetails%7Ccom.github.andremion%7Cfloatingnavigationview%7C1.3.0%7Caar) [![Android Arsenal Floating-Navigation-View](https://img.shields.io/badge/Android%20Arsenal-Floating--Navigation--View-green.svg?style=true)](https://android-arsenal.com/details/1/4134) [![MaterialUp Floating-Navigation-View](https://img.shields.io/badge/MaterialUp-Floating--Navigation--View-blue.svg?style=true)](https://www.uplabs.com/posts/floating-navigation-view) @@ -22,7 +22,7 @@ Include the library in your `build.gradle` ```groovy dependencies{ - compile 'com.github.andremion:floatingnavigationview:1.2.0' + compile 'com.github.andremion:floatingnavigationview:1.3.0' } ``` @@ -32,7 +32,7 @@ or in your `pom.xml` if you are using Maven com.github.andremion floatingnavigationview - 1.2.0 + 1.3.0 aar ``` diff --git a/gradle.properties b/gradle.properties index bf22c6d..78d5a59 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ android.useAndroidX=true -VERSION_NAME=1.2.0 -VERSION_CODE=5 +VERSION_NAME=1.3.0 +VERSION_CODE=6 GROUP=com.github.andremion POM_DESCRIPTION=A simple Floating Action Button that shows an anchored Navigation View @@ -13,4 +13,4 @@ POM_LICENCE_NAME=The Apache Software License, Version 2.0 POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt POM_LICENCE_DIST=repo POM_DEVELOPER_ID=andremion -POM_DEVELOPER_NAME=André Mion \ No newline at end of file +POM_DEVELOPER_NAME=Andre Mion \ No newline at end of file diff --git a/sample/build.gradle b/sample/build.gradle index 3645857..3a8f6b2 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -7,8 +7,8 @@ android { applicationId "com.andremion.floatingnavigationview.sample" minSdkVersion project.ext.minSdkVersion targetSdkVersion project.ext.targetSdkVersion - versionCode 1 - versionName "1.0" + versionCode = VERSION_CODE + versionName = VERSION_NAME } buildTypes { release {