Skip to content

Commit

Permalink
Bump version to 1.5.0.
Browse files Browse the repository at this point in the history
Add contributors and changelog.
  • Loading branch information
macfreek committed May 14, 2018
1 parent e222250 commit 358d706
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 8 deletions.
4 changes: 3 additions & 1 deletion CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@ d0sboots (David Walker)
dtrauma (Thomas Roesner)
Fenixin (Alejandro Aguilera)
fwaggle (Jamie Fraser)
k1988 (Terry Zhao)
kamyu2
MacFreek (Freek Dijkstra)
MidnightLightning (Brooks Boyd)
MostAwesomeDude (Corbin Simpson)
psolyca (Damien)
SBliven (Spencer Bliven)
Stumpylog (Trenton Holmes)
suresttexas00 (Surest Texas)
tWoolie (Thomas Woolford)
Xgkkp
Xgkkp
28 changes: 22 additions & 6 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,43 @@ NBT Trunk
---------
Git trunk can be found at https://github.com/twoolie/NBT/tree/master

Bug Fixes since 1.4.1
Bug Fixes since 1.5.0
~~~~~~~~~~~~~~~~~~~~~
* Faster reading chunks with corrupt header. (#76)
* None

Changes in Auxiliary Scripts since 1.4.1
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Automatic testing now also runs Python 3.4 and pypy3.

Known Bugs
~~~~~~~~~~
See https://github.com/twoolie/NBT/issues

* It is posible to access the NBT structure of any world folder, including
McRegion and Anvil worlds. However, chunk specifics (such as the location
of blocks in the NBT structure) are only available for McRegion, not yet for
of blocks in the NBT structure) are only available for McRegion, not for
Anvil.
* The name of a variable generally only supports 2-byte Unicode characters (the
Basic Multilingual Plane). For Full Unicode support, use Python 3.3 or higher,
or compile Python --with-wide-unicode.


NBT 1.5.0 (14 May 2018)
---------------------------

New Features since 1.4.1
~~~~~~~~~~~~~~~~~~~~~~~~
* Support for Long Arrays (used in Minecraft 1.13 and higher) (#95)

Bug Fixes since 1.4.1
~~~~~~~~~~~~~~~~~~~~~~~~
* Faster reading chunks with corrupt header. (#76)

Changes in Auxiliary Scripts since 1.4.1
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Add examples/player_print.py script (courtesy k1988).
* Automatic testing now also runs Python 3.4, 3.5, 3.6 and pypy3.
* Review and minor improvements of tests.
* PEP8-compatibility improvements of the code (courtesy suresttexas00)


NBT 1.4.1 (27 October 2013)
---------------------------

Expand Down
2 changes: 1 addition & 1 deletion nbt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Documentation only automatically includes functions specified in __all__.
# If you add more functions, please manually include them in doc/index.rst.

VERSION = (1, 4, 1)
VERSION = (1, 5, 0)
"""NBT version as tuple. Note that the major and minor revision number are
always present, but the patch identifier (the 3rd number) is only used in 1.4."""

Expand Down

0 comments on commit 358d706

Please sign in to comment.