Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andremion committed Oct 5, 2020
1 parent 9375066 commit 9c18a51
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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'
}
```

Expand All @@ -32,7 +32,7 @@ or in your `pom.xml` if you are using Maven
<dependency>
<groupId>com.github.andremion</groupId>
<artifactId>floatingnavigationview</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
<type>aar</type>
</dependency>
```
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
POM_DEVELOPER_NAME=Andre Mion
4 changes: 2 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 9c18a51

Please sign in to comment.