Skip to content

Commit 08d9b9f

Browse files
committed
Release 0.2.3
- Change license to MIT (closes #4) - Fix for service names with multiple underscores (closes #9)
1 parent 1f93233 commit 08d9b9f

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,10 @@ hs_err_pid*
2020
/gradle.properties
2121
/.gradle
2222
/hola.iml
23+
24+
/.vscode/
25+
/.settings/
26+
/bin
27+
28+
/.classpath
29+
/.project

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ apply plugin: 'signing'
3030

3131
group = 'net.straylightlabs'
3232
archivesBaseName = 'hola'
33-
version = '0.2.2'
33+
version = '0.2.3'
3434

3535
def ossrhUsername = hasProperty('ossrhUsername') ? ossrhUsername : System.getenv('ossrhUsername')
3636
def ossrhPassword = hasProperty('ossrhPassword') ? ossrhPassword : System.getenv('ossrhPassword')
@@ -41,8 +41,8 @@ repositories {
4141

4242
dependencies {
4343
testCompile 'junit:junit:4.12'
44-
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.21'
45-
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.1.7'
44+
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
45+
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
4646
}
4747

4848
task javadocJar(type: Jar) {
@@ -91,8 +91,8 @@ uploadArchives {
9191

9292
licenses {
9393
license {
94-
name 'GNU General Public License (GPL)'
95-
url 'http://www.gnu.org/licenses/gpl.txt'
94+
name 'The MIT License (MIT)'
95+
url 'http://opensource.org/licenses/MIT'
9696
}
9797
}
9898

src/main/java/net/straylightlabs/hola/Hola.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828

2929
@SuppressWarnings("unused")
3030
public class Hola {
31-
public final static String VERSION = "0.2.2";
31+
public final static String VERSION = "0.2.3";
3232
}

0 commit comments

Comments
 (0)