Skip to content

Commit

Permalink
Merge branch 'main' into item_update
Browse files Browse the repository at this point in the history
  • Loading branch information
RitikShah authored Nov 3, 2023
2 parents 113f7f0 + 92324ba commit e6a90d5
Show file tree
Hide file tree
Showing 12 changed files with 102 additions and 1,340 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

<!--next-version-placeholder-->

## v0.8.1 (2023-11-02)
### Fix
* **crafter:** Get #smithed.crafter:all from misode/mcmeta ([#37](https://github.com/Smithed-MC/Libraries/issues/37)) ([`b5f9cd0`](https://github.com/Smithed-MC/Libraries/commit/b5f9cd00a2ee9a967133dca66e7c277085be301f))

## v0.8.0 (2023-10-18)
### Feature
* Bump versions + beet ([`a3ff2cf`](https://github.com/Smithed-MC/Libraries/commit/a3ff2cf4a44347d29e43bf9a9728c79b2d909ec6))

## v0.7.4 (2023-07-30)
### Fix
* Clicked_lockable_block.json ([`3ebdd3e`](https://github.com/Smithed-MC/Libraries/commit/3ebdd3e31e2d1e31d7a57cb8c85ead4de085a62a))
Expand Down
131 changes: 66 additions & 65 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "smithed-libraries"
version = "0.7.4"
version = "0.8.1"
description = "All of the Smithed Libraries"
authors = ["Smithed Council <team@smithed.dev>"]
license = "MIT"
Expand All @@ -11,7 +11,7 @@ python = "^3.10"
mecha = "^0.73.0"
bolt = "^0.36.0"
bolt-expressions = "^0.12.2"
beet = "^0.88.0"
beet = "^0.96.1"
pydantic = "^1.10.2"

[tool.poetry.group.dev.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion smithed_libraries/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from . import plugins

__version__ = "0.7.4"
__version__ = "0.8.1"

__all__ = [
"actionbar",
Expand Down
4 changes: 2 additions & 2 deletions smithed_libraries/packs/actionbar/beet.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
extend: "@smithed_libraries/common.yaml"

id: smithed.actionbar
name: Smithed Actionbar
version: "0.4.1"
name: Smithed Actionbar
version: "0.5.0"
description: Native Actionbar Library for Smithed

data_pack:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"block": {
"tag": "minecraft:beds",
"state": {
"occupied": false
"occupied": "false"
}
}
}
Expand Down Expand Up @@ -62,7 +62,7 @@
"block": {
"tag": "minecraft:beds",
"state": {
"occupied": true
"occupied": "true"
}
}
}
Expand Down Expand Up @@ -99,7 +99,7 @@
"block": {
"tag": "minecraft:beds",
"state": {
"occupied": false
"occupied": "false"
}
}
}
Expand Down Expand Up @@ -136,7 +136,7 @@
"block": {
"tag": "minecraft:beds",
"state": {
"occupied": true
"occupied": "true"
}
}
}
Expand Down
9 changes: 5 additions & 4 deletions smithed_libraries/packs/crafter/beet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ extend: "@smithed_libraries/common.yaml"

id: smithed.crafter
name: Smithed Crafter
version: "0.2.0"
version: "0.3.1"
description: Native Library for Smithed
author: TheNuclearNexus

data_pack:
name: Smithed Crafter
load: .

resource_pack:
name: Smithed Crafter RP
load: .
Expand All @@ -20,13 +20,14 @@ require:

pipeline:
- mecha
- smithed_libraries.plugins.crafter

# overrides:
# - >
# - >
# meta.smithed.versioning = {"scheduled_paths": [
# "impl/technical/tick", "impl/technical/slow_tick"
# ]}

meta:
depends_on: # used for metadata
depends_on: # used for metadata
custom-block: "0.1.0"
Loading

0 comments on commit e6a90d5

Please sign in to comment.