Skip to content

Commit

Permalink
Update version to 1.5.0, library uploaded to Maven Central
Browse files Browse the repository at this point in the history
  • Loading branch information
lecho committed Feb 10, 2015
1 parent 0c7ba1f commit 4e125a8
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
VERSION_NAME=1.4
VERSION_CODE=4
GROUP=lecho.lib.hellocharts.hellocharts-library
VERSION_NAME=1.5.0
VERSION_CODE=5
GROUP=com.github.lecho

POM_DESCRIPTION=Charting library for Android compatible with API 8+(Android 2.2). Works best when hardware acceleration is available, so API 14+(Android 4.0) is recommended.
POM_DESCRIPTION=Charting library for Android compatible with API 8+(Android 2.2).
POM_URL=https://github.com/lecho/hellocharts-android
POM_SCM_URL=https://github.com/lecho/hellocharts-android
POM_SCM_CONNECTION=scm:[email protected]:lecho/hellocharts-android.git
Expand Down
4 changes: 2 additions & 2 deletions hellocharts-library/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="lecho.lib.hellocharts"
android:versionCode="4"
android:versionName="1.4" >
android:versionCode="5"
android:versionName="1.5.0" >

<uses-sdk
android:minSdkVersion="8"
Expand Down
8 changes: 4 additions & 4 deletions hellocharts-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {

dependencies {
//compile fileTree(dir: 'libs', include: '*.jar')
compile 'com.android.support:support-v4:21.0.+'
compile 'com.android.support:support-v4:21.0.3'
}


Expand Down Expand Up @@ -77,9 +77,9 @@ publishing {
publications {
maven(MavenPublication) {
artifact "${project.buildDir}/outputs/aar/${project.name}-release.aar"
artifactId project.name
groupId "lecho.lib.hellocharts"
version android.defaultConfig.versionName
artifactId = POM_ARTIFACT_ID
groupId = GROUP
version = VERSION_NAME

// Task androidSourcesJar is provided by gradle-mvn-push.gradle
//artifact androidSourcesJar {
Expand Down
2 changes: 1 addition & 1 deletion hellocharts-library/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
POM_NAME=HelloCharts for Android Library
POM_NAME=HelloCharts Library for Android
POM_ARTIFACT_ID=hellocharts-library
POM_PACKAGING=aar
4 changes: 2 additions & 2 deletions hellocharts-samples/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="lecho.lib.hellocharts.samples"
android:versionCode="4"
android:versionName="1.4" >
android:versionCode="5"
android:versionName="1.5.0" >

<uses-sdk
android:minSdkVersion="8"
Expand Down

0 comments on commit 4e125a8

Please sign in to comment.