Skip to content

Commit d3affc6

Browse files
committed
Version bump
1 parent f67e871 commit d3affc6

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ on: [ pull_request, workflow_dispatch ] #When your GitHub Action will
55
env: #Environment variables that can later be referenced using ${{ env.MINECRAFT_VERSION }}. These are useful for repeating information and allow for quick changes for new mod updates
66
MINECRAFT_VERSION: 1.20.1
77
JAVA_VERSION: 17
8-
VERSION: 0.1.2-1.20.1
9-
RELEASE_NAME: Kintsugi - Beta 0.1.2
8+
VERSION: 0.1.3-1.20.1
9+
RELEASE_NAME: Kintsugi - Beta 0.1.3
1010
MODRINTH_TOKEN: ${{ secrets.PUBLISH_MODRINTH_TOKEN }}
1111
CURSEFORGE_TOKEN: ${{ secrets.PUBLISH_CURSEFORGE_TOKEN }}
1212
GITHUB_TOKEN: ${{ secrets.PUBLISH_GITHUB_TOKEN }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 0.1.3 - JEI Compatibility
4+
5+
- Added rudimentary JEI compatibility, so all Knowledge books will appear in the JEI picker window.
6+
37
## 0.1.2 - Bug Fixes
48

59
- Fixed some issues that may have prevented compatibility between other mods.

build.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,6 @@ dependencies {
150150

151151
// Example mod dependency with JEI - using fg.deobf() ensures the dependency is remapped to your development mappings
152152
// The JEI API is declared for compile time use, while the full JEI artifact is used at runtime
153-
// compileOnly fg.deobf("mezz.jei:jei-${mc_version}-common-api:${jei_version}")
154-
// compileOnly fg.deobf("mezz.jei:jei-${mc_version}-forge-api:${jei_version}")
155-
// runtimeOnly fg.deobf("mezz.jei:jei-${mc_version}-forge:${jei_version}")
156153
compileOnly(fg.deobf("mezz.jei:jei-${minecraft_version}-common-api:${jei_version}"))
157154
compileOnly(fg.deobf("mezz.jei:jei-${minecraft_version}-forge-api:${jei_version}"))
158155
// at runtime, use the full JEI jar for Forge

0 commit comments

Comments
 (0)