Skip to content

Commit

Permalink
[1.7.1] Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
3arthqu4ke committed Jun 20, 2023
1 parent 768c37b commit 4fa7b34
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -159,11 +159,6 @@ allprojects {

repositories {
// mavenLocal()
maven {
name = 'BuildDirMaven'
url = rootProject.layout.buildDirectory.dir('maven')
}

if (System.getenv('DEPLOY_TO_GITHUB_PACKAGES_URL') != null) {
maven {
name = 'GithubPagesMaven'
Expand All @@ -173,6 +168,11 @@ allprojects {
password = System.getenv('GITHUB_TOKEN')
}
}
} else {
maven {
name = 'BuildDirMaven'
url = rootProject.layout.buildDirectory.dir('maven')
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
project_version=1.7.0
project_version=1.7.1
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@Getter
@RequiredArgsConstructor
public class Launcher implements HeadlessMc {
public static final String VERSION = "1.7.0";
public static final String VERSION = "1.7.1";

@Delegate
private final HeadlessMc headlessMc;
Expand Down
2 changes: 1 addition & 1 deletion headlessmc-scripts/hmc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/env sh
java -jar headlessmc-launcher-1.7.0.jar --command $@
java -jar headlessmc-launcher-1.7.1.jar --command $@
2 changes: 1 addition & 1 deletion headlessmc-scripts/hmc.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@echo off
"%JAVA_HOME%\bin\java" -jar headlessmc-launcher-1.7.0.jar --command %*
"%JAVA_HOME%\bin\java" -jar headlessmc-launcher-1.7.1.jar --command %*
2 changes: 1 addition & 1 deletion headlessmc-scripts/hmw
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
# when running in docker on windows bash seems to be at /bin/bash TODO: can we make this one script?
java -jar headlessmc-launcher-1.7.0.jar --command $@
java -jar headlessmc-launcher-1.7.1.jar --command $@

0 comments on commit 4fa7b34

Please sign in to comment.