Skip to content

Commit

Permalink
Bump to 0.7.0b0
Browse files Browse the repository at this point in the history
  • Loading branch information
SmylerMC committed Jun 26, 2022
1 parent 8291d07 commit 9126215
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
### 0.6.0b0;
### 0.7.0b0:
* Method to convert regions to the sponge schematic NBT format
* Fix crash with litematics created by newer versions of Litematica "id -> The required key is missing in the (Tile)Entity's NBT Compound",
It was caused by Litematica no longer specifying a TileEntity's ID in its own NBT structure
(it can be assumed by looking the block at the TileEntity's coordinates)
* Made internal list fields access only (Region#entities, Region#tile_entities, Region#block_ticks, Region#fluid_ticks)

### 0.6.0b0:
* Method to convert regions to the vanilla Minecraft structure NBT format

### 0.5.0b0:
Expand Down
2 changes: 1 addition & 1 deletion litemapy/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
MC_DATA_VERSION = 2975 # Minecraft 1.18.2 (https://minecraft.fandom.com/wiki/Data_version)
DEFAULT_NAME = "Unnamed" # Default name given to schematics and regions if unspecified
LITEMAPY_NAME = "Litemapy" # Used to identify schematic created with Litemapy in metadata
LITEMAPY_VERSION = "0.6.0b0" # Unique version string
LITEMAPY_VERSION = "0.7.0b0" # Unique version string
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

DESCRIPTION = "Read and write Litematica's Minecraft schematics files"


def readme():
with open("README.md") as f:
txt = f.read()
Expand Down

0 comments on commit 9126215

Please sign in to comment.