File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33## How to update minecraft-data
44
5- For each minecraft_version :
5+ For each minecraft_version :
66* cd minecraft_data/minecraft_version/data
77* git pull
8+ * git checkout tags/[ latest minecraft-data release]
89
910Then in the main dir git add .
1011
1112You can then create a commit whenever you're ready
1213
1314## How to publish a new version
1415
15- 1 . decide the number of the new version (see http://semver.org/ )
16- 2 . put it in setup.py
17- 3 . add changes in doc/history.md (see what changed in minecraft-data)
18- 4 . create a commit with message "Release VERSION_NUMBER"
19- 5 . git tag VERSION_NUMBER
20- 6 . git push && git push --tags
21- 7 . python setup.py sdist upload -r pypi
16+ 1 . Update setup.py to the minecraft-data release version
17+ 2 . Add changes in doc/history.md (see what changed in minecraft-data)
18+ 3 . Create a commit with message "Release VERSION_NUMBER"
19+ 4 . git tag VERSION_NUMBER
20+ 5 . git push && git push --tags
21+ 6 . python setup.py sdist upload -r pypi
Original file line number Diff line number Diff line change 1+ ## 2.62.1
2+ * Several changes since project semi-abandonment
3+ * Project now uses a more generic approach to adapting minecraft-data schema
4+ * Added support for Minecraft PE
5+ * Project now tracks with minecraft-data release number
6+ * Update minecraft-data to 2.62.1
7+
18## 0.5.1
29 * update minecraft-data to 2.2.0
310 * still only pc versions are available as imports for now
4350
4451## 0.1.0
4552 * provide : id-indexed data, name-indexed data, unindexed data and two functions to find items or blocks
46-
Original file line number Diff line number Diff 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 = '0.5 .1' ,
21+ version = '2.62 .1' ,
2222 maintainer = 'Romain Beaumont' ,
2323 maintainer_email = 'romain.rom1@gmail.com' ,
2424 url = 'https://github.com/SpockBotMC/python-minecraft-data' ,
You can’t perform that action at this time.
0 commit comments