Skip to content

Commit

Permalink
Adjust version requirements to be less strict, add related note to re…
Browse files Browse the repository at this point in the history
…adme.
  • Loading branch information
Jaxydog committed Oct 4, 2024
1 parent 00672a8 commit 6eea12c
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 7 deletions.
6 changes: 5 additions & 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.5.1
lodestone_version = 1.5.2
```

```groovy
Expand All @@ -146,6 +146,10 @@ dependencies {
modImplementation 'com.github.Jaxydog:Lodestone:${project.lodestone_version}'
}
```

Lodestone *should* work with many older versions of Minecraft, but only the latest game version is guaranteed to have
proper support. I am currently not interested in backporting to versions prior to roughly 1.18, but if you encounter any
issues feel free to let me know anyway.
<!-- modrinth_exclude.start -->
### Contributing

Expand Down
13 changes: 13 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# Patch Release 1.5.2

Makes dependency version requirements less strict.

## Content Changes

- Lodestone now runs on 1.18 or later, as long as you have sufficient dependency versions.
- Added an explicit requirement for any version of `fabric-data-generation-api-v1`.
- Lodestone now requires any Fabric loader version past 0.4.0.
- Lodestone now requires at least Java 17 due to the usage of sealed types.

---

# Patch Release 1.5.1

Update to 1.21.1
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ org.gradle.parallel = true
# Fabric properties
minecraft_version = 1.21.1
yarn_mappings = 1.21.1+build.3
loader_version = 0.16.3
loader_version = 0.16.5

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

# Dependency versions
fabric_version = 0.103.0+1.21.1
fabric_version = 0.105.0+1.21.1
7 changes: 4 additions & 3 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@
},

"depends": {
"fabricloader": ">=0.16.3",
"minecraft": "~1.21",
"java": ">=21"
"fabric-data-generation-api-v1": "*",
"fabricloader": ">=0.4.0",
"minecraft": ">=1.18",
"java": ">=17"
}
}

0 comments on commit 6eea12c

Please sign in to comment.