Skip to content

Commit f770792

Browse files
committed
Increased the version number to reflect the apcompat version.
1 parent 2519c1a commit f770792

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A backport of the [`SwitchPreference`](http://developer.android.com/reference/an
55

66
This port works on Android 2.1+ (Eclair MR1 / level 7).
77

8-
The current version of this library is `2.0.0`.
8+
The current version of this library is `2.0.1`.
99

1010
IMPORTANT: UPDATE NOTICE
1111
---
@@ -40,7 +40,7 @@ repositories {
4040
(...)
4141
4242
dependencies {
43-
compile 'org.jraf:android-switch-backport:2.0.0'
43+
compile 'org.jraf:android-switch-backport:2.0.1'
4444
}
4545
```
4646

library/build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'maven'
44
group = 'org.jraf'
55
ext.groupPath = group.replace('.', '/')
66
ext.artifactId = 'android-switch-backport'
7-
version = '2.0.0'
7+
version = '2.0.1'
88

99

1010
android {
@@ -77,11 +77,11 @@ android.libraryVariants.all { variant ->
7777
}
7878

7979
// Use "gradle install" to deploy the aar to your local maven repository, as well as the javadoc and the source jars
80-
//noinspection GroovyAssignabilityCheck
80+
// noinspection GroovyAssignabilityCheck
8181
task install(
82-
group: "install",
83-
description: "Make the library, generate a source jar, generate a javadoc jar, and copy everything to the local maven repository",
84-
dependsOn: ["assembleRelease", "uploadArchives", "jarReleaseSources", "jarReleaseJavadoc"]) << {
82+
group: 'install',
83+
description: 'Make the library, generate a source jar, generate a javadoc jar, and copy everything to the local maven repository',
84+
dependsOn: ['assembleRelease', 'uploadArchives', 'jarReleaseSources', 'jarReleaseJavadoc']) << {
8585
// Copy the sources jar
8686
println("Copying " + buildDir.getPath() + "/libs/library-${version}-sources.jar" + " to " + "${repositories.mavenLocal().getUrl()}/${groupPath}/${artifactId}/${version}" + "/${artifactId}-${version}-sources.jar")
8787
copy {

0 commit comments

Comments
 (0)