Skip to content

Commit

Permalink
Update to 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaxydog committed Jun 13, 2024
1 parent 2ebbd79 commit 627549b
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ Fabric mod, add the following to your Gradle manifest:
```properties
# gradle.properties

lodestone_version = 1.3.1
lodestone_version = 1.4.0
```

```groovy
Expand Down
20 changes: 11 additions & 9 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# Minor Release 1.4.0

Update to 1.21. Set up Gradle tasks for publishing to both GitHub and Modrinth.

## Internal Changes

- Added and configured the `minotaur` plugin.
- Added and configured the `github-release` plugin.

---

# Minor Release 1.3.0

Reduces unnecessary registrations and distinguishes between bundled and added loader interfaces.
Expand All @@ -12,15 +23,6 @@ Reduces unnecessary registrations and distinguishes between bundled and added lo

- Only register `DataGenerating` environment if the data generator is actually enabled.

# Minor Patch 1.3.1

Set up Gradle tasks for publishing to both GitHub and Modrinth.

## Internal Changes

- Added and configured the `minotaur` plugin.
- Added and configured the `github-release` plugin.

---

# Minor Release 1.2.0
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ org.gradle.jvmargs = -Xmx1G
org.gradle.parallel = true

# Fabric properties
minecraft_version = 1.20.6
yarn_mappings = 1.20.6+build.3
minecraft_version = 1.21
yarn_mappings = 1.21+build.1
loader_version = 0.15.11

# Mod Properties
mod_version = 1.3.1
mod_version = 1.4.0
maven_group = dev.jaxydog.lodestone
archives_base_name = lodestone
modrinth_id = lodestone-lib
publish_debug = false

# Dependency versions
fabric_version = 0.100.0+1.20.6
fabric_version = 0.100.0+1.21
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

"depends": {
"fabricloader": ">=0.15.11",
"minecraft": "~1.20.6",
"minecraft": "~1.21",
"java": ">=21"
}
}
2 changes: 1 addition & 1 deletion src/test/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"main": [ "dev.jaxydog.lodestone.LodestoneTest" ]
},
"depends": {
"minecraft": "~1.20.6",
"minecraft": "~1.21",
"java": ">=21",
"fabric-api": "*",
"lodestone": "*"
Expand Down

0 comments on commit 627549b

Please sign in to comment.