Skip to content

Commit

Permalink
Update version to v0.4.10-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
Gurkenlabs committed Feb 27, 2018
1 parent f0a4875 commit b3ce52a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions build-maven.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jar {

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

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

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

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

group = "de.gurkenlabs"
archivesBaseName = "litiengine"
version = "0.4.9"
version = "0.4.10"

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

archivesBaseName = "litiengine"
version = "v0.4.9-alpha"
version = "v0.4.10-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.9
sonar.projectVersion=0.4.10

# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# This property is optional if sonar.modules is set.
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 @@ -107,7 +107,7 @@ public static void main(String[] args) {

Game.getInfo().setName("utiLITI");
Game.getInfo().setSubTitle("litiengine creation kit");
Game.getInfo().setVersion("v0.4.9-alpha");
Game.getInfo().setVersion("v0.4.10-alpha");

initSystemTray();

Expand Down

0 comments on commit b3ce52a

Please sign in to comment.