Skip to content

Commit 817c137

Browse files
release(0.3.2): Update to 1.20.5
1 parent 4c2f8dc commit 817c137

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.3.2] - 2024-04-27
9+
Update to 1.20.5
10+
11+
### Changed
12+
- The datapack now requires 1.20.5
13+
14+
### Fixed
15+
- The golem now starts a program from the beginning every time it is run
16+
817
## [0.3.1] - 2024-01-29
918
The big split
1019

data/bot/functions/version.mcfunction

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ data modify storage bot:version name set value "Code of Copper"
22

33
data modify storage bot:version major set value 0
44
data modify storage bot:version minor set value 3
5-
data modify storage bot:version patch set value 1
5+
data modify storage bot:version patch set value 2
66
data modify storage bot:version suffix set value ""
77

88
execute if data storage bot:version {suffix:""} run tellraw @a {"nbt":"name","storage":"bot:version","extra":[{"text":" v","extra":[{"nbt":"major","storage":"bot:version","extra":[{"text":"."},{"nbt":"minor","storage":"bot:version"},{"text":".","extra":[{"nbt":"patch","storage":"bot:version"}]}]}]}]}

pack.mcmeta

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"pack": {
3-
"pack_format": 26,
3+
"pack_format": 41,
44
"description": "Programmable Copper Golems.",
5-
"supported_formats": {"min_inclusive": 18, "max_inclusive": 26}
5+
"supported_formats": 41
66
},
77
"overlays": {
88
"entries": [

project.json

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
{
22
"name": "Code of Copper",
33
"slug": "code-of-copper",
4-
"version": "0.3.1",
4+
"version": "0.3.2",
55
"game_versions": [
6-
"1.20.2",
7-
"1.20.3",
8-
"1.20.4"
6+
"1.20.5"
97
],
108
"summary": "Programmable Copper Golems. Fully text-based programming language in a vanilla datapack.",
119
"license": "GPL-3.0-or-later",
@@ -19,7 +17,7 @@
1917
],
2018
"dependencies": {
2119
"golemscript": "0.3.1",
22-
"moxlib": "0.5.11",
20+
"moxlib": "0.5.12",
2321
"regex": "0.1.1"
2422
},
2523
"dev_dependencies": {},

0 commit comments

Comments
 (0)