Skip to content

Commit

Permalink
v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tth05 committed Jul 31, 2021
1 parent 50bdbd5 commit 0623a25
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Setup forge
run: ./gradlew setupCiWorkspace
run: ./gradlew -Pnet.minecraftforge.gradle.disableUpdateChecker=true setupCiWorkspace
- name: Build with Gradle
run: ./gradlew build
run: ./gradlew -Pnet.minecraftforge.gradle.disableUpdateChecker=true build
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -35,8 +35,10 @@ jobs:
release_name: Release ${{ github.ref }}
body: |
Changes in this Release
- Fixed items with different capabilities stacking
- Improved the OC integration
- Performance improvements for reader and writer on large systems
- Fixed recipe transfer error message not being sent to player
- Fixed external storage only extracting a single stack if IItemHandler has extraction limit
- Fixed tasks voiding items when the calculation throws an exception
draft: false
prerelease: false
- name: Upload jars to release
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# More Refined Storage Changelog

# 2.3.0
- Performance improvements for reader and writer on large systems
- Fixed recipe transfer error message not being sent to player
- Fixed external storage only extracting a single stack if IItemHandler has extraction limit
- Fixed tasks voiding items when the calculation throws an exception

# 2.2.10
- Fixed items with different capabilities stacking
- Improved the OC integration
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'net.minecraftforge.gradle.forge'

version = "2.2.10"
version = "2.3.0"

group = "refinedstorage"
archivesBaseName = "morerefinedstorage"
Expand Down

0 comments on commit 0623a25

Please sign in to comment.