From 6b81bcf3341ac7cca8642aeee40039372f856720 Mon Sep 17 00:00:00 2001 From: SquidDev Date: Sun, 2 Jun 2019 16:11:18 +0100 Subject: [PATCH] Bump version --- build.gradle | 2 +- gradle.properties | 2 +- .../computercraft/lua/rom/help/changelog.txt | 9 +++++++++ .../computercraft/lua/rom/help/whatsnew.txt | 17 +++++------------ 4 files changed, 16 insertions(+), 14 deletions(-) diff --git a/build.gradle b/build.gradle index 94126b101..a7e9aebe3 100644 --- a/build.gradle +++ b/build.gradle @@ -226,7 +226,7 @@ task compressJson(dependsOn: extractAnnotationsJar) { assemble.dependsOn compressJson -task checkRelease(dependsOn: extractAnnotationsJar) { +task checkRelease { group "upload" description "Verifies that everything is ready for a release" diff --git a/gradle.properties b/gradle.properties index 48db8be4c..c053184cb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ # Mod properties -mod_version=1.83.0 +mod_version=1.83.1 # Minecraft properties mc_version=1.12.2 diff --git a/src/main/resources/assets/computercraft/lua/rom/help/changelog.txt b/src/main/resources/assets/computercraft/lua/rom/help/changelog.txt index bd20d7394..a9e543539 100644 --- a/src/main/resources/assets/computercraft/lua/rom/help/changelog.txt +++ b/src/main/resources/assets/computercraft/lua/rom/help/changelog.txt @@ -1,3 +1,12 @@ +# New features in CC: Tweaked 1.83.1 + +* Add several new MOTD messages (JakobDev) + +And several bug fixes: +* Fix type check in `rednet.lookup` +* Error if turtle and pocket computer programs are run on the wrong system (JakobDev) +* Do not discard varargs after a nil. + # New features in CC: Tweaked 1.83.0 * Add Chinese translation (XuyuEre) diff --git a/src/main/resources/assets/computercraft/lua/rom/help/whatsnew.txt b/src/main/resources/assets/computercraft/lua/rom/help/whatsnew.txt index 01c3d1e4e..55e2ac007 100644 --- a/src/main/resources/assets/computercraft/lua/rom/help/whatsnew.txt +++ b/src/main/resources/assets/computercraft/lua/rom/help/whatsnew.txt @@ -1,17 +1,10 @@ -New features in CC: Tweaked 1.83.0 +New features in CC: Tweaked 1.83.1 -* Add Chinese translation (XuyuEre) -* Small performance optimisations for packet sending. -* Provide an `arg` table to programs fun from the shell, similar to PUC Lua. -* Add `os.date`, and handle passing datetime tables to `os.time`, making them largely compatible with PUC Lua. -* `rm` and `mkdir` accept multiple arguments (hydraz, JakobDev). -* Rework rendering of in-hand pocket computers. -* Prevent rendering of a bounding box on a monitor's screen. -* Refactor Lua-side type checking code into a single method. Also include the function name in error messages. +* Add several new MOTD messages (JakobDev) And several bug fixes: -* Fix incorrect computation of server-tick budget. -* Fix list-based config options not reloading. -* Ensure `require` is usable within the Lua REPL. +* Fix type check in `rednet.lookup` +* Error if turtle and pocket computer programs are run on the wrong system (JakobDev) +* Do not discard varargs after a nil. Type "help changelog" to see the full version history.