Skip to content

Commit 126abda

Browse files
author
Steffen Wilke
committed
Bump version to v0.4.18-alpha.
1 parent bbd10e7 commit 126abda

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ The library is distributed over the [Maven Central Repository](https://search.ma
2929

3030
### Gradle
3131
```groovy
32-
compile 'de.gurkenlabs:litiengine:0.4.17'
32+
compile 'de.gurkenlabs:litiengine:0.4.18'
3333
```
3434

3535
### Maven
3636
```xml
3737
<dependency>
3838
<groupId>de.gurkenlabs</groupId>
3939
<artifactId>litiengine</artifactId>
40-
<version>0.4.17</version>
40+
<version>0.4.18</version>
4141
</dependency>
4242
```
4343
[More Installation Instructions](https://docs.litiengine.com/basics/getting-started/get-litiengine)

build-maven.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jar {
5555

5656
from('resources') { include '**/*' }
5757

58-
version = 'v0.4.17-alpha'
58+
version = 'v0.4.18-alpha'
5959
exclude '**/*.dll'
6060
exclude '**/*.jnilib'
6161
exclude '**/*.dylib'
@@ -88,13 +88,13 @@ task createJavadocs(type: Javadoc) {
8888
task javadocJar(type: Jar) {
8989
classifier = 'javadoc'
9090
from javadoc
91-
version = 'v0.4.17-alpha'
91+
version = 'v0.4.18-alpha'
9292
}
9393

9494
task sourcesJar(type: Jar) {
9595
classifier = 'sources'
9696
from sourceSets.main.allSource
97-
version = 'v0.4.17-alpha'
97+
version = 'v0.4.18-alpha'
9898
}
9999

100100
artifacts {
@@ -108,7 +108,7 @@ tasks.withType(JavaCompile) {
108108

109109
group = "de.gurkenlabs"
110110
archivesBaseName = "litiengine"
111-
version = "0.4.17"
111+
version = "0.4.18"
112112

113113
uploadArchives {
114114
repositories {

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ apply plugin: 'jacoco'
1919
apply plugin: 'maven'
2020

2121
archivesBaseName = "litiengine"
22-
version = "v0.4.17-alpha"
22+
version = "v0.4.18-alpha"
2323

2424
sourceSets {
2525
main.java.srcDir "src"

utiliti/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ apply plugin: 'eclipse'
77
apply plugin: 'application'
88

99
archivesBaseName = "utiliti"
10-
version = "v0.4.17-alpha"
10+
version = "v0.4.18-alpha"
1111
mainClassName = "de.gurkenlabs.utiliti.Program"
1212

1313
sourceSets {
@@ -67,10 +67,10 @@ launch4j {
6767
mainClassName = 'de.gurkenlabs.utiliti.Program'
6868
icon = 'pixel-icon-utiLITI.ico'
6969
outputDir = 'libs'
70-
outfile = archivesBaseName + '-v0.4.17-alpha.exe'
70+
outfile = archivesBaseName + '-v0.4.18-alpha.exe'
7171
companyName = 'gurkenlabs.de'
72-
version = '0.4.17'
73-
textVersion = '0.4.17'
72+
version = '0.4.18'
73+
textVersion = '0.4.18'
7474
copyright = '2017 gurkenlabs.de'
7575
jvmOptions = ['-Xms256m', '-Xmx1024m']
7676
}

0 commit comments

Comments
 (0)