Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

Commit

Permalink
Update version to 2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rettichlp committed Sep 27, 2023
1 parent eef90e6 commit c5b7331
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ assignees: ''
Describe this bug with all information you have... How can it be reproduced? Do you have a crash log? What have you done
before the bug occurred? What did you expect? Do you have screenshots?

LabyMod version: `3` `4`
LabyMod version: `4`

Minecraft version: `1.12.2`

Addon version: `2.4.0`
Addon version: `2.4.1`

<hr>

Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@ name: Build LabyAddon

on:
push:
branches: [ "develop" ]
branches:
- 'develop'
- 'hotfix/**'
pull_request:
branches: [ "main", "develop" ]
branches:
- 'main'
- 'develop'
- 'hotfix/**'
workflow_dispatch:

jobs:
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/wiki.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@ name: Build Wiki

on:
push:
branches: [ "develop" ]
branches:
- 'develop'
- 'hotfix/**'
pull_request:
branches: [ "main", "develop" ]
branches:
- 'main'
- 'develop'
- 'hotfix/**'
workflow_dispatch:

jobs:
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "com.rettichlp.unicacityaddon"
version = "2.4.0"
version = "2.4.1"

java.toolchain.languageVersion.set(JavaLanguageVersion.of(17))

Expand All @@ -17,7 +17,7 @@ labyMod {
author = "RettichLP & Dimiikou"
description = "UnicacityAddon is a LabyMod addon written for the Minecraft server Unicacity and provides specialized, nice-to-have features and utilities for everyday gameplay."
minecraftVersion = "1.12.2<*"
version = System.getenv().getOrDefault("VERSION", "2.4.0")
version = System.getenv().getOrDefault("VERSION", "2.4.1")
}

minecraft {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public UtilService(UnicacityAddon unicacityAddon) {

@SuppressWarnings("SameReturnValue")
public String version() {
return "2.4.0";
return "2.4.1";
}

public boolean isUnicacity() {
Expand Down

0 comments on commit c5b7331

Please sign in to comment.