Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkGuardsman committed Dec 31, 2019
1 parent cecbc61 commit b2fc0f1
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

# Change Log

Record of version changes for developers

## 1.1.0 - Dec 31, 2019

* Added: Test Manager to control world, server, and player init
* Added: Helpers to clear center chunk
* Added: Helpers to lock test to center chunk

## 1.0.0 - Dec 30, 2019

* Changed: From Junit4 to Junit5
* Changed: To support Minecraft 12
* Removed: Launcher init
* Removed: RunWith system

## Before

* Not making change logs for old versions, PR if you care
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ minecraft {
dependencies {
implementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
}

Expand All @@ -35,11 +36,11 @@ processResources {
// replace stuff in mcmod.info, nothing else
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'

// replace version and mcversion
expand 'version':project.version, 'mcversion':project.minecraft.version
}

// copy everything else except the mcmod.info
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=1.0.0
version=1.1.0
archivebase=MinecraftJUnit
groupid=minecraftjunit
org=builtbroken
Expand Down

0 comments on commit b2fc0f1

Please sign in to comment.