Skip to content

Commit da86818

Browse files
committed
v1.1.0
<h1>Changelog</h1> <h3>Features</h3> - Added `npcs`, `shops`, and `zones` support - Added `__str__` implementations for all structs in python builds <h3>Improvements</h3> - You can now, optionally, specify a specific commit hash for the repo when downloading <h3>Fixes</h3> - Made retrieving data by id case insensitive - Bools default to `false` instead of being `None`
1 parent 30eb36b commit da86818

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Get commit version and body
1818
id: commit
1919
run: |
20-
full_msg="${{ github.event.head_commit.message }}"
20+
full_msg='${{ github.event.head_commit.message }}'
2121
version_num="$(echo "$full_msg" | head -n1)"
2222
body="$(echo "$full_msg" | tail -n +2)"
2323
@@ -37,7 +37,7 @@ jobs:
3737
uses: ./.github/actions/setup
3838

3939
- name: Publish to crates.io
40-
run: cargo publish -p skyblock-repo
40+
run: cargo publish
4141
env:
4242
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
4343

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

skyblock-repo-macros/Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
[package]
22
name = "skyblock-repo-macros"
3+
description = "Macros used for skyblock-repo package"
4+
35
version = "0.0.1"
46
edition = "2024"
57

8+
license = "MIT"
9+
readme = "../README.md"
10+
repository = "https://github.com/SkyblockRepo/RepoRS"
11+
homepage = "https://skyblockrepo.com"
12+
613
[lib]
714
proc-macro = true
815

skyblock-repo/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "skyblock-repo"
33
description = "Cargo/Python package to interface with the Skyblock Repo"
44
keywords = ["skyblock", "hypixel", "hypixel-skyblock"]
55

6-
version = "1.0.6"
6+
version = "1.1.0"
77
edition = "2024"
88

99
license = "MIT"
@@ -30,4 +30,4 @@ serde = { version = "1.0.219", features = ["derive"] }
3030
serde_json = "1.0.143"
3131
zip = { version = "5.0.0", default-features = false, features = ["deflate"] }
3232
ureq = "3.1.2"
33-
skyblock-repo-macros = {path = "../skyblock-repo-macros"}
33+
skyblock-repo-macros = { path = "../skyblock-repo-macros", version = "0.0.1" }

0 commit comments

Comments
 (0)