Skip to content

Commit 74b492e

Browse files
committed
Release 2.69.0
1 parent 2032a1e commit 74b492e

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

doc/history.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.69.0
2+
* Update minecraft-data to 2.69.0
3+
* Added loginPacket data
4+
15
## 2.67.0
26
* Update minecraft-data to 2.67.0
37

minecraft_data/tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def convert(_dir, version, edition ='pc'):
99
data = _grabdata(_dir, datapaths[edition][version])
1010
ret = {}
1111
for datum in ('recipes', 'materials', 'protocol', 'version',
12-
'blockCollisionShapes', 'protocolComments'):
12+
'blockCollisionShapes', 'protocolComments', 'loginPacket'):
1313
if datum in data:
1414
ret[datum] = data[datum]
1515
for datum in ('blocks', 'items', 'windows', 'effects', 'particles',

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def package_files(directory):
1818
description='Provide easy access to minecraft data in python',
1919
license='MIT',
2020
long_description=open('README.rst').read(),
21-
version='2.67.0',
21+
version='2.69.0',
2222
maintainer='Romain Beaumont',
2323
maintainer_email='romain.rom1@gmail.com',
2424
url='https://github.com/SpockBotMC/python-minecraft-data',

0 commit comments

Comments
 (0)