diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt index 18aaff0..9857b67 100644 --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -5,6 +5,7 @@ kamyu2 MacFreek (Freek Dijkstra) MidnightLightning (Brooks Boyd) MostAwesomeDude (Corbin Simpson) +SBliven (Spencer Bliven) Stumpylog (Trenton Holmes) tWoolie (Thomas Woolford) Xgkkp \ No newline at end of file diff --git a/LICENSE.txt b/LICENSE.txt index 66c7917..af18c57 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ - Copyright (c) 2010 Thomas Woolford + Copyright (c) 2010-2013 Thomas Woolford and contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/doc/changelog.rst b/doc/changelog.rst index 59e0744..0fd56da 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -9,6 +9,22 @@ NBT Trunk --------- Git trunk can be found at https://github.com/twoolie/NBT/tree/master +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 + 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.4.0 (27 October 2013) +--------------------------- + New Features since 1.3.0 ~~~~~~~~~~~~~~~~~~~~~~~~ * Added documentation. @@ -24,7 +40,7 @@ New Features since 1.3.0 * Added RegionFileFormatError exception. * Allow easy iteration over chunks in a RegionFile: `for chunk in RegionFile(filename)` -* RegionFile.iter_chunks() now silently ignore unreadable chunks. +* RegionFile.iter_chunks() now silently ignores unreadable chunks. * Better display of filenames in NBTFile and RegionFiles when initialised with a fileobject. * Truncate region file size when possible. @@ -82,18 +98,6 @@ Deprecated features since 1.3.0 * RegionFile.get_chunk() method may later be changed to return a Chunk() object. Use RegionFile.get_nbt() to retain the current behaviour. -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 - 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.3.0 (19 March 2012) ------------------------- diff --git a/nbt/__init__.py b/nbt/__init__.py index c590ad2..8a64ad4 100644 --- a/nbt/__init__.py +++ b/nbt/__init__.py @@ -4,9 +4,9 @@ # Documentation only automatically includes functions specified in __all__. # If you add more functions, please manually include them in doc/index.rst. -VERSION = (1, 3) -"""NBT version as tuple. The version currently only contains major and minor -revision number, but not (yet) patch and build identifiers.""" +VERSION = (1, 4, 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.""" def _get_version(): """Return the NBT version as string."""