Skip to content

Commit 849d1d5

Browse files
committed
Updated changelog and release build script
1 parent 1e35e7e commit 849d1d5

File tree

4 files changed

+8
-29
lines changed

4 files changed

+8
-29
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v2.1.1
2+
- Disabled RTL layout in dialog.
3+
14
## v2.1.0
25
- Added Hebrew translation.
36

calcdialog/bintray.gradle

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,9 @@ artifacts {
2424
archives sourcesJar
2525
}
2626

27-
Properties properties = new Properties()
28-
properties.load(project.rootProject.file('local.properties').newDataInputStream())
29-
3027
bintray {
31-
user = properties.getProperty("bintray.user")
32-
key = properties.getProperty("bintray.apikey")
28+
user = project.getProperty("bintray.user")
29+
key = project.getProperty("bintray.apikey")
3330

3431
configurations = ['archives']
3532
pkg {
@@ -43,10 +40,6 @@ bintray {
4340
publicDownloadNumbers = true
4441
version {
4542
desc = libraryDescription
46-
gpg {
47-
sign = true
48-
passphrase = properties.getProperty("bintray.gpg.password")
49-
}
5043
}
5144
}
52-
}
45+
}

calcdialog/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ ext {
1313
siteUrl = 'https://github.com/maltaisn/calcdialoglib'
1414
gitUrl = 'https://github.com/maltaisn/calcdialoglib.git'
1515

16-
libraryVersionCode = 14
17-
libraryVersion = '2.1.0'
16+
libraryVersionCode = 15
17+
libraryVersion = '2.1.1'
1818

1919
developerId = 'maltaisn'
2020

gradle.properties

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,2 @@
1-
# Project-wide Gradle settings.
2-
3-
# IDE (e.g. Android Studio) users:
4-
# Gradle settings configured through the IDE *will override*
5-
# any settings specified in this file.
6-
7-
# For more details on how to configure your build environment visit
8-
# http://www.gradle.org/docs/current/userguide/build_environment.html
9-
10-
# Specifies the JVM arguments used for the daemon process.
11-
# The setting is particularly useful for tweaking memory settings.
121
android.enableJetifier=true
132
android.useAndroidX=true
14-
org.gradle.jvmargs=-Xmx1536m
15-
16-
# When configured, Gradle will run in incubating parallel mode.
17-
# This option should only be used with decoupled projects. More details, visit
18-
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
19-
# org.gradle.parallel=true

0 commit comments

Comments
 (0)