Skip to content

Commit a3dc5a2

Browse files
committedAug 1, 2015
Merge branch 'release/v1.5.1'
2 parents 376361b + b93b8b3 commit a3dc5a2

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed
 

‎README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The Android-Iconics Library is pushed to [Maven Central], so you just need to ad
2929

3030
```javascript
3131
dependencies {
32-
compile 'com.mikepenz:iconics:1.5.0@aar'
32+
compile 'com.mikepenz:iconics:1.5.1@aar'
3333
}
3434
```
3535

@@ -38,7 +38,7 @@ Provide your own font without the additional icons
3838

3939
```javascript
4040
dependencies {
41-
compile 'com.mikepenz:iconics-core:1.5.0@aar'
41+
compile 'com.mikepenz:iconics-core:1.5.1@aar'
4242
}
4343
```
4444

@@ -123,7 +123,7 @@ Just add the dependency of any and as many typface-library-addons in your build.
123123

124124
```javascript
125125
dependencies {
126-
compile 'com.mikepenz:iconics:1.5.0@aar'
126+
compile 'com.mikepenz:iconics:1.5.1@aar'
127127
compile 'com.mikepenz:octicons-typeface:2.2.0@aar'
128128
compile 'com.mikepenz:meteocons-typeface:1.1.1@aar'
129129
compile 'com.mikepenz:community-material-typeface:1.1.70@aar'

‎app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ android {
1212
defaultConfig {
1313
minSdkVersion rootProject.ext.minSdkVersion
1414
targetSdkVersion rootProject.ext.targetSdkVersion
15-
versionCode 150
16-
versionName "1.5.0"
15+
versionCode 151
16+
versionName "1.5.1"
1717
enforceUniquePackageName false
1818
}
1919

‎library-core/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
defaultConfig {
88
minSdkVersion rootProject.ext.minSdkVersion
99
targetSdkVersion rootProject.ext.targetSdkVersion
10-
versionCode 150
11-
versionName "1.5.0"
10+
versionCode 151
11+
versionName "1.5.1"
1212
}
1313
buildTypes {
1414
release {

‎library-core/gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
# This option should only be used with decoupled projects. More details, visit
3333
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
3434
# org.gradle.parallel=true
35-
VERSION_NAME=1.5.0
36-
VERSION_CODE=150
35+
VERSION_NAME=1.5.1
36+
VERSION_CODE=151
3737

3838
POM_NAME=Android-Iconics Library
3939
POM_ARTIFACT_ID=iconics-core

‎library-core/src/main/res/values/library_androidiconics_strings.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
Android-Iconics is a library to use (almost) any alternative icon-font in your projects. It allows you to add any Android-Iconics compatible typeface-library-addon to your project and you are able to start using that font.
2828
]]>
2929
</string>
30-
<string name="library_AndroidIconics_libraryVersion">1.5.0</string>
30+
<string name="library_AndroidIconics_libraryVersion">1.5.1</string>
3131
<string name="library_AndroidIconics_libraryWebsite">https://github.com/mikepenz/Android-Iconics</string>
3232
<string name="library_AndroidIconics_licenseId">apache_2_0</string>
3333
<string name="library_AndroidIconics_isOpenSource">true</string>

‎library/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
defaultConfig {
88
minSdkVersion rootProject.ext.minSdkVersion
99
targetSdkVersion rootProject.ext.targetSdkVersion
10-
versionCode 150
11-
versionName "1.5.0"
10+
versionCode 151
11+
versionName "1.5.1"
1212
}
1313
buildTypes {
1414
release {
@@ -25,5 +25,5 @@ if (project.hasProperty('pushall') || project.hasProperty('libraryonly')) {
2525
}
2626

2727
dependencies {
28-
compile project(':library-core')
28+
compile "com.mikepenz:iconics-core:+"
2929
}

‎library/gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
# This option should only be used with decoupled projects. More details, visit
3333
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
3434
# org.gradle.parallel=true
35-
VERSION_NAME=1.5.0
36-
VERSION_CODE=150
35+
VERSION_NAME=1.5.1
36+
VERSION_CODE=151
3737

3838
POM_NAME=Android-Iconics Library
3939
POM_ARTIFACT_ID=iconics

0 commit comments

Comments
 (0)
Please sign in to comment.