Skip to content

Commit

Permalink
Increased the version number to reflect the apcompat version.
Browse files Browse the repository at this point in the history
  • Loading branch information
BoD committed Mar 28, 2015
1 parent 2519c1a commit f770792
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A backport of the [`SwitchPreference`](http://developer.android.com/reference/an

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

The current version of this library is `2.0.0`.
The current version of this library is `2.0.1`.

IMPORTANT: UPDATE NOTICE
---
Expand Down Expand Up @@ -40,7 +40,7 @@ repositories {
(...)
dependencies {
compile 'org.jraf:android-switch-backport:2.0.0'
compile 'org.jraf:android-switch-backport:2.0.1'
}
```

Expand Down
10 changes: 5 additions & 5 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'maven'
group = 'org.jraf'
ext.groupPath = group.replace('.', '/')
ext.artifactId = 'android-switch-backport'
version = '2.0.0'
version = '2.0.1'


android {
Expand Down Expand Up @@ -77,11 +77,11 @@ android.libraryVariants.all { variant ->
}

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

0 comments on commit f770792

Please sign in to comment.