Bump to 1.92.0

A tiny release, but there's new features so it's technically a minor
bump.
This commit is contained in:
SquidDev 2020-09-12 09:27:47 +01:00
parent 59de21eae2
commit 748ebbe66b
3 changed files with 19 additions and 9 deletions

View File

@ -1,5 +1,5 @@
# Mod properties
mod_version=1.91.0
mod_version=1.92.0
# Minecraft properties (update mods.toml when changing)
mc_version=1.15.2

View File

@ -1,3 +1,14 @@
# New features in CC: Tweaked 1.92.0
* Bump Cobalt version:
* Add support for the __pairs metamethod.
* string.format now uses the __tostring metamethod.
* Add date-specific MOTDs (MCJack123).
And several bug fixes:
* Correctly handle tabs within textutils.unserailizeJSON.
* Fix sheep not dropping items when sheered by turtles.
# New features in CC: Tweaked 1.91.0
* [Generic peripherals] Expose NBT hashes of items to inventory methods.

View File

@ -1,13 +1,12 @@
New features in CC: Tweaked 1.91.0
New features in CC: Tweaked 1.92.0
* [Generic peripherals] Expose NBT hashes of items to inventory methods.
* Bump Cobalt version
* Optimise handling of string concatenation.
* Add string.{pack,unpack,packsize} (MCJack123)
* Bump Cobalt version:
* Add support for the __pairs metamethod.
* string.format now uses the __tostring metamethod.
* Add date-specific MOTDs (MCJack123).
And several bug fixes:
* Escape non-ASCII characters in JSON strings (neumond)
* Make field names in fs.attributes more consistent (abby)
* Fix textutils.formatTime correctly handle 12 AM (R93950X)
* Correctly handle tabs within textutils.unserailizeJSON.
* Fix sheep not dropping items when sheered by turtles.
Type "help changelog" to see the full version history.