Skip to content

Commit

Permalink
Bump version number to 1.4.0.
Browse files Browse the repository at this point in the history
Note that VERSION now contains a patch revision ("1.4.0" instead of "1.4").
This is the last version that contains tabs for indentation.
  • Loading branch information
macfreek committed Oct 27, 2013
1 parent 71ec345 commit dc3844d
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 17 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ kamyu2
MacFreek (Freek Dijkstra)
MidnightLightning (Brooks Boyd)
MostAwesomeDude (Corbin Simpson)
SBliven (Spencer Bliven)
Stumpylog (Trenton Holmes)
tWoolie (Thomas Woolford)
Xgkkp
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
30 changes: 17 additions & 13 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand Down Expand Up @@ -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)
-------------------------
Expand Down
6 changes: 3 additions & 3 deletions nbt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand Down

0 comments on commit dc3844d

Please sign in to comment.