Skip to content

Commit 8f24adb

Browse files
committed
Amend
2 parents 0df502a + 3ac44dc commit 8f24adb

File tree

126 files changed

+5985
-2823
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+5985
-2823
lines changed

.github/workflows/ci.yaml

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
docs:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v5
2121

2222
- name: Install Rust Toolchain Components
2323
uses: actions-rs/toolchain@v1
@@ -27,21 +27,14 @@ jobs:
2727

2828
- uses: Swatinem/rust-cache@v2
2929

30-
- uses: peaceiris/actions-mdbook@v2
31-
with:
32-
mdbook-version: latest
30+
- name: Install `mdbook`
31+
run: cargo install mdbook@0.4.52
3332

34-
- name: Install mdbook-i18n-helpers
35-
run: cargo install mdbook-i18n-helpers
33+
- name: Install `mdbook-i18n-helpers`
34+
run: cargo install mdbook-i18n-helpers@0.3.6
3635

37-
- name: Install mdbook-linkcheck
38-
run: |
39-
mkdir -p mdbook-linkcheck
40-
cd mdbook-linkcheck
41-
wget https://github.com/Michael-F-Bryan/mdbook-linkcheck/releases/latest/download/mdbook-linkcheck.x86_64-unknown-linux-gnu.zip
42-
unzip mdbook-linkcheck.x86_64-unknown-linux-gnu.zip
43-
chmod +x mdbook-linkcheck
44-
pwd >> $GITHUB_PATH
36+
- name: Install `mdbook-linkcheck`
37+
run: cargo install mdbook-linkcheck@0.7.7
4538

4639
- name: Build docs
4740
run: mdbook build docs -d build
@@ -70,7 +63,7 @@ jobs:
7063
runs-on: ubuntu-latest
7164

7265
steps:
73-
- uses: actions/checkout@v2
66+
- uses: actions/checkout@v5
7467

7568
- name: Install Rust Toolchain Components
7669
uses: actions-rs/toolchain@v1
@@ -111,7 +104,7 @@ jobs:
111104
runs-on: ${{matrix.os}}
112105

113106
steps:
114-
- uses: actions/checkout@v2
107+
- uses: actions/checkout@v5
115108

116109
- name: Install Rust Toolchain Components
117110
uses: actions-rs/toolchain@v1

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ${{matrix.os}}
3737

3838
steps:
39-
- uses: actions/checkout@v2
39+
- uses: actions/checkout@v5
4040

4141
- name: Install Rust Toolchain Components
4242
uses: actions-rs/toolchain@v1

CHANGELOG.md

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,99 @@
11
Changelog
22
=========
33

4+
[0.24.2](https://github.com/ordinals/ord/releases/tag/0.24.1) - 2025-11-13
5+
--------------------------------------------------------------------------
6+
7+
### Fixed
8+
- Fix trait template description list ([#4440](https://github.com/ordinals/ord/pull/4440) by [casey](https://github.com/casey))
9+
10+
### Misc
11+
- Return empty page if block inscription page request is out of range ([#4439](https://github.com/ordinals/ord/pull/4439) by [casey](https://github.com/casey))
12+
- Log index creation ([#4438](https://github.com/ordinals/ord/pull/4438) by [casey](https://github.com/casey))
13+
14+
[0.24.1](https://github.com/ordinals/ord/releases/tag/0.24.1) - 2025-11-13
15+
--------------------------------------------------------------------------
16+
17+
### Fixed
18+
- Bump schema version ([#4436](https://github.com/ordinals/ord/pull/4436) by [casey](https://github.com/casey))
19+
20+
[0.24.0](https://github.com/ordinals/ord/releases/tag/0.23.3) - 2025-11-12
21+
--------------------------------------------------------------------------
22+
23+
### Fixed
24+
- Fix redirects for outpoints and TXIDs consisting only of decimal digits ([#4421](https://github.com/ordinals/ord/pull/4421) by [gmart7t2](https://github.com/gmart7t2))
25+
- Don't cache negative sat index responses ([#4418](https://github.com/ordinals/ord/pull/4418) by [casey](https://github.com/casey))
26+
27+
### Added
28+
- Add traits ([#4433](https://github.com/ordinals/ord/pull/4433) by [casey](https://github.com/casey))
29+
- Return properties from inscription JSON API ([#4425](https://github.com/ordinals/ord/pull/4425) by [casey](https://github.com/casey))
30+
- Add attributes to inscriptions and gallery items ([#4424](https://github.com/ordinals/ord/pull/4424) by [casey](https://github.com/casey))
31+
32+
### Misc
33+
- Replace `lazy_static` with `LazyLock` ([#4429](https://github.com/ordinals/ord/pull/4429) by [terror](https://github.com/terror))
34+
- Fix rune specification ([#4430](https://github.com/ordinals/ord/pull/4430) by [gmart7t2](https://github.com/gmart7t2))
35+
- Add properties and metaprotocol to API docs ([#4426](https://github.com/ordinals/ord/pull/4426) by [casey](https://github.com/casey))
36+
- Use single properties struct ([#4423](https://github.com/ordinals/ord/pull/4423) by [casey](https://github.com/casey))
37+
- Fix typo in src/fund_raw_transaction.rs ([#4420](https://github.com/ordinals/ord/pull/4420) by [stemlaud](https://github.com/stemlaud))
38+
- Add complete Japanese translation ([#4406](https://github.com/ordinals/ord/pull/4406) by [SatoshiRoppongi](https://github.com/SatoshiRoppongi))
39+
- Update install script to use Bitcoin Core 30 ([#4417](https://github.com/ordinals/ord/pull/4417) by [casey](https://github.com/casey))
40+
- Upgrade checkout to v5 ([#4392](https://github.com/ordinals/ord/pull/4392) by [rejected-l](https://github.com/rejected-l))
41+
- Update to Rust 2024 ([#4412](https://github.com/ordinals/ord/pull/4412) by [casey](https://github.com/casey))
42+
43+
[0.23.3](https://github.com/ordinals/ord/releases/tag/0.23.3) - 2025-09-19
44+
--------------------------------------------------------------------------
45+
46+
### Added
47+
- Support ordinals.com satscards ([#4410](https://github.com/ordinals/ord/pull/4410) by [casey](https://github.com/casey))
48+
- Allow submitting offers created with wallet ([#4409](https://github.com/ordinals/ord/pull/4409) by [casey](https://github.com/casey))
49+
- Add PSBT offer submission ([#4408](https://github.com/ordinals/ord/pull/4408) by [casey](https://github.com/casey))
50+
- Add wallet sweep command ([#4394](https://github.com/ordinals/ord/pull/4394) by [raphjaph](https://github.com/raphjaph))
51+
52+
### Changed
53+
- Enable json response on `/children` routes ([#4281](https://github.com/ordinals/ord/pull/4281) by [felipelincoln](https://github.com/felipelincoln))
54+
55+
### Misc
56+
- Fix new Rust lints ([#4396](https://github.com/ordinals/ord/pull/4396) by [casey](https://github.com/casey))
57+
- Update deps and fmt ([#4385](https://github.com/ordinals/ord/pull/4385) by [raphjaph](https://github.com/raphjaph))
58+
- Update api.md ([#4381](https://github.com/ordinals/ord/pull/4381) by [Galoretka](https://github.com/Galoretka))
59+
- Allow inscribing with backup and Core v29 ([#4371](https://github.com/ordinals/ord/pull/4371) by [gmart7t2](https://github.com/gmart7t2))
60+
- Update minimum Rust version to 1.85.0 ([#4356](https://github.com/ordinals/ord/pull/4356) by [blieb](https://github.com/blieb))
61+
- Fix clippy lints ([#4373](https://github.com/ordinals/ord/pull/4373) by [raphjaph](https://github.com/raphjaph))
62+
- Use `unversioned_leaf_script_from_witness()` ([#4355](https://github.com/ordinals/ord/pull/4355) by [casey](https://github.com/casey))
63+
64+
[0.23.2](https://github.com/ordinals/ord/releases/tag/0.23.2) - 2025-05-20
65+
--------------------------------------------------------------------------
66+
67+
### Added
68+
- Allow inscribing JPEG XL ([#4326](https://github.com/ordinals/ord/pull/4326) by [casey](https://github.com/casey))
69+
70+
### Fixed
71+
- Don't display `(expected)` when rune has already unlocked ([#4323](https://github.com/ordinals/ord/pull/4323) by [casey](https://github.com/casey))
72+
73+
### Misc
74+
- Bump minimum required Rust version to 1.81.0 ([#4353](https://github.com/ordinals/ord/pull/4353) by [casey](https://github.com/casey))
75+
- Fix typo in recursion.md ([#4348](https://github.com/ordinals/ord/pull/4348) by [furo-tests-in-prod](https://github.com/furo-tests-in-prod))
76+
- Fix typo in faq.md ([#4347](https://github.com/ordinals/ord/pull/4347) by [furo-tests-in-prod](https://github.com/furo-tests-in-prod))
77+
- Fix clippy errors ([#4350](https://github.com/ordinals/ord/pull/4350) by [raphjaph](https://github.com/raphjaph))
78+
- Fix minor typos ([#4337](https://github.com/ordinals/ord/pull/4337) by [GarmashAlex](https://github.com/GarmashAlex))
79+
- Fix grammatical errors ([#4328](https://github.com/ordinals/ord/pull/4328) by [VolodymyrBg](https://github.com/VolodymyrBg))
80+
- Fix moderation.md typo ([#4327](https://github.com/ordinals/ord/pull/4327) by [0xbasar](https://github.com/0xbasar))
81+
- Update sparrow-wallet.md ([#4332](https://github.com/ordinals/ord/pull/4332) by [gap-editor](https://github.com/gap-editor))
82+
- Bump actions/checkout to v4 ([#4330](https://github.com/ordinals/ord/pull/4330) by [dizer-ti](https://github.com/dizer-ti))
83+
- Retry RPC client ([#4329](https://github.com/ordinals/ord/pull/4329) by [SmarakNayak](https://github.com/SmarakNayak))
84+
- Move ethereum teleburn address out of details ([#4325](https://github.com/ordinals/ord/pull/4325) by [casey](https://github.com/casey))
85+
- Update sparrow-wallet.md ([#4324](https://github.com/ordinals/ord/pull/4324) by [owenzimmew06](https://github.com/owenzimmew06))
86+
- Fix typos in documentation and comments ([#4322](https://github.com/ordinals/ord/pull/4322) by [leopardracer](https://github.com/leopardracer))
87+
88+
[0.23.1](https://github.com/ordinals/ord/releases/tag/0.23.1) - 2025-04-01
89+
--------------------------------------------------------------------------
90+
91+
### Fixed
92+
- Don't wrap iframe media types in preview page ([#4315](https://github.com/ordinals/ord/pull/4315) by [casey](https://github.com/casey))
93+
94+
### Misc
95+
- Add security section to handbook ([#4314](https://github.com/ordinals/ord/pull/4314) by [casey](https://github.com/casey))
96+
497
[0.23.0](https://github.com/ordinals/ord/releases/tag/0.23.0) - 2025-03-31
598
--------------------------------------------------------------------------
699

0 commit comments

Comments
 (0)