Skip to content

Commit

Permalink
Bump version to v0.4.19-alpha.
Browse files Browse the repository at this point in the history
  • Loading branch information
steffen-wilke committed Feb 7, 2020
1 parent 526cc5f commit 5e0fd84
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ repositories {
}
dependencies {
compile 'de.gurkenlabs:litiengine:0.4.18'
compile 'de.gurkenlabs:litiengine:0.4.19'
}
```

Expand All @@ -43,7 +43,7 @@ dependencies {
<dependency>
<groupId>de.gurkenlabs</groupId>
<artifactId>litiengine</artifactId>
<version>0.4.18</version>
<version>0.4.19</version>
</dependency>
```
[More Installation Instructions](https://docs.litiengine.com/basics/getting-started/get-litiengine)
Expand Down
8 changes: 4 additions & 4 deletions build-maven.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jar {
exclude 'META-INF/services/**'
}

version = 'v0.4.18-alpha'
version = 'v0.4.19-alpha'
exclude '**/*.dll'
exclude '**/*.jnilib'
exclude '**/*.dylib'
Expand Down Expand Up @@ -81,13 +81,13 @@ task createJavadocs(type: Javadoc) {
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
version = 'v0.4.18-alpha'
version = 'v0.4.19-alpha'
}

task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
version = 'v0.4.18-alpha'
version = 'v0.4.19-alpha'
}

artifacts {
Expand All @@ -101,7 +101,7 @@ tasks.withType(JavaCompile) {

group = "de.gurkenlabs"
archivesBaseName = "litiengine"
version = "0.4.18"
version = "0.4.19"

uploadArchives {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ apply plugin: 'java'
apply plugin: 'jacoco'

archivesBaseName = "litiengine"
version = "v0.4.18-alpha"
version = "v0.4.19-alpha"

sourceSets {
main.java.srcDir "src"
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
sonar.projectKey=de.gurkenlabs:litiengine
# this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1.
sonar.projectName=litiengine
sonar.projectVersion=0.4.18
sonar.projectVersion=0.4.19

# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# This property is optional if sonar.modules is set.
Expand Down
10 changes: 5 additions & 5 deletions utiliti/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apply plugin: 'eclipse'
apply plugin: 'application'

archivesBaseName = "utiliti"
version = "v0.4.18-alpha"
version = "v0.4.19-alpha"
mainClassName = "de.gurkenlabs.utiliti.Program"

sourceSets {
Expand Down Expand Up @@ -61,11 +61,11 @@ launch4j {
mainClassName = 'de.gurkenlabs.utiliti.Program'
icon = 'pixel-icon-utiLITI.ico'
outputDir = 'libs'
outfile = archivesBaseName + '-v0.4.18-alpha.exe'
outfile = archivesBaseName + '-v0.4.19-alpha.exe'
companyName = 'gurkenlabs.de'
version = '0.4.18'
textVersion = '0.4.18'
copyright = '2017 gurkenlabs.de'
version = '0.4.19'
textVersion = '0.4.19'
copyright = '2020 gurkenlabs.de'
jvmOptions = ['-Xms256m', '-Xmx1024m']
}

Expand Down
2 changes: 1 addition & 1 deletion utiliti/src/de/gurkenlabs/utiliti/Program.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static void main(String[] args) {
// setup basic settings
Game.info().setName("utiLITI");
Game.info().setSubTitle("LITIengine Creation Kit");
Game.info().setVersion("v0.4.18-alpha");
Game.info().setVersion("v0.4.19-alpha");
Resources.strings().setEncoding(Strings.ENCODING_UTF_8);

// hook up configuration and initialize the game
Expand Down

0 comments on commit 5e0fd84

Please sign in to comment.