Skip to content

Commit

Permalink
Fixed requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
andersmmg committed Jun 4, 2024
1 parent 618b32a commit 869dd5c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

### Fixed

## [0.5.1] - 2024-06-04

### Fixed

- Updated requirements

## [0.5.0] - 2024-06-04

### Added
Expand Down Expand Up @@ -84,8 +90,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
- Keycard writer
- Keycard cloner

[Unreleased]: https://github.com/andersmmg/LockAndBlock/compare/v0.5.0...HEAD
[Unreleased]: https://github.com/andersmmg/LockAndBlock/compare/v0.5.1...HEAD

[0.5.1]: https://github.com/andersmmg/LockAndBlock/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/andersmmg/LockAndBlock/compare/v0.4.1...v0.5.0
[0.4.1]: https://github.com/andersmmg/LockAndBlock/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/andersmmg/LockAndBlock/compare/v0.3.0...v0.4.0
Expand Down
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,15 @@ processResources {
inputs.property "version", project.version
inputs.property "minecraft_version", project.minecraft_version
inputs.property "loader_version", project.loader_version
inputs.property "lavender_version", project.lavender_version
filteringCharset "UTF-8"
duplicatesStrategy = DuplicatesStrategy.INCLUDE

filesMatching("fabric.mod.json") {
expand "version": project.version,
"minecraft_version": project.minecraft_version,
"loader_version": project.loader_version
"loader_version": project.loader_version,
"lavender_version": project.lavender_version
}
}

Expand Down Expand Up @@ -132,6 +134,7 @@ modrinth {
dependencies {
required.project "fabric-api"
required.project "owo-lib"
required.project "lavender"
}
// debugMode = true
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ loader_version=0.15.11

# Mod Properties
mod_name=Lock & Block
mod_version=0.5.0
mod_version=0.5.1
maven_group=com.andersmmg
archives_base_name=LockAndBlock
modrinth_id=CoXJchqF
Expand Down
3 changes: 2 additions & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"depends": {
"fabricloader": ">=${loader_version}",
"fabric": "*",
"minecraft": "${minecraft_version}"
"minecraft": "${minecraft_version}",
"lavender": "${lavender_version}"
}
}

0 comments on commit 869dd5c

Please sign in to comment.