Skip to content

Commit

Permalink
Update to 1.21.3 (#1063)
Browse files Browse the repository at this point in the history
  • Loading branch information
misode authored Oct 23, 2024
1 parent fd5c3ec commit 222b3d4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ jobs:
fabric_server_url: https://meta.fabricmc.net/v2/versions/loader/1.21.1/0.16.5/1.0.1/server/jar
fabric_api_url: https://cdn.modrinth.com/data/P7dR8mSH/versions/WTaAx4ah/fabric-api-0.105.0%2B1.21.1.jar
packtest_url: https://cdn.modrinth.com/data/XsKUhp45/versions/x9txtivi/packtest-1.8-mc1.21.1.jar
- version: '1.21.2'
fabric_server_url: https://meta.fabricmc.net/v2/versions/loader/1.21.2/0.16.7/1.0.1/server/jar
fabric_api_url: https://cdn.modrinth.com/data/P7dR8mSH/versions/UEjZZNue/fabric-api-0.106.1%2B1.21.2.jar
- version: '1.21.3'
fabric_server_url: https://meta.fabricmc.net/v2/versions/loader/1.21.3/0.16.7/1.0.1/server/jar
fabric_api_url: https://cdn.modrinth.com/data/P7dR8mSH/versions/dhD4I4lJ/fabric-api-0.106.1%2B1.21.3.jar
packtest_url: https://cdn.modrinth.com/data/XsKUhp45/versions/wjOUK14F/packtest-1.9-mc1.21.2.jar
name: 'test-${{ matrix.version }}'
runs-on: ubuntu-24.04
Expand Down Expand Up @@ -141,7 +141,6 @@ jobs:
- name: Build all modules for tests
run: poetry run beet -p beet-test.yaml -l ${{ env.LOG_LEVEL }} build
env:
VERSION: ${{ matrix.version }}
LOG_LEVEL: ${{ runner.debug == 1 && 'DEBUG' || 'INFO'}}

- name: Setup Java
Expand Down
2 changes: 1 addition & 1 deletion gm4/plugins/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

parent_logger = logging.getLogger("gm4.manifest")

SUPPORTED_GAME_VERSIONS = ["1.21", "1.21.1", "1.21.2"]
SUPPORTED_GAME_VERSIONS = ["1.21", "1.21.1", "1.21.2", "1.21.3"]

# config models for beet.yaml metas
CreditsModel = dict[str, list[str]]
Expand Down
2 changes: 1 addition & 1 deletion gm4/plugins/write_mcmeta.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def beet_default(ctx: Context):
ctx.project_name,
"\n",
{
"text": f"Gamemode 4 for 1.21 - 1.21.2",
"text": f"Gamemode 4 for 1.21 - 1.21.3",
"color": "#4AA0C7"
}
]
Expand Down
2 changes: 1 addition & 1 deletion spyglass.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"env": {
"gameVersion": "1.21.2",
"gameVersion": "1.21.3",
"exclude": [
".beet_cache/",
".vscode/",
Expand Down

0 comments on commit 222b3d4

Please sign in to comment.