Skip to content

Commit

Permalink
Merge commit '80ef6e74f03b176c7a8bee3ec4a9cc9d3b91ac87'
Browse files Browse the repository at this point in the history
  • Loading branch information
ynohtna92 committed Nov 28, 2023
2 parents 3c67c16 + 80ef6e7 commit c29d5ab
Show file tree
Hide file tree
Showing 65 changed files with 12,931 additions and 1,173 deletions.
27 changes: 26 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,30 @@ defaults:

env:
RUSTFLAGS: --deny warnings
LANGUAGES: zh ja

jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2


- name: Install Rust Toolchain Components
uses: actions-rs/toolchain@v1
with:
override: true
toolchain: stable

- uses: Swatinem/rust-cache@v2

- uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: latest

- name: Install mdbook-i18n-helpers
run: cargo install mdbook-i18n-helpers

- name: Install mdbook-linkcheck
run: |
mkdir -p mdbook-linkcheck
Expand All @@ -34,7 +47,18 @@ jobs:
chmod +x mdbook-linkcheck
pwd >> $GITHUB_PATH
- run: mdbook build docs
- name: Build docs
run: mdbook build docs -d build

- name: Build all translations for docs
run: |
for lang in ${{ env.LANGUAGES }}; do
echo "::group::Building $lang translation"
MDBOOK_BOOK__LANGUAGE=$lang \
mdbook build docs -d build/$lang
mv docs/build/$lang/html docs/build/html/$lang
echo "::endgroup::"
done
- name: Deploy Pages
uses: peaceiris/actions-gh-pages@v3
Expand All @@ -43,6 +67,7 @@ jobs:
github_token: ${{secrets.GITHUB_TOKEN}}
publish_branch: gh-pages
publish_dir: docs/build/html

lint:
runs-on: ubuntu-latest

Expand Down
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,47 @@
Changelog
=========

[0.9.0](https://github.com/ordinals/ord/releases/tag/0.9.0) - 2023-09-11
------------------------------------------------------------------------

### Added

- Allow reinscribing with wallet (#2432)
- Provide more detailed translation instructions (#2443)
- Add Japanese version of handbook (#2426)
- Add provenance to docs summary (#2427)
- Inscribe with parent (#2388)
- Add provenance spec (#2278)
- Implement provenance in index (#2353)
- Add application/protobuf media type (#2389)
- Install mdbook-i18n-helpers in Github Workflows (#2408)
- Add `decode` command (#2401)
- Add Chinese version of the handbook (#2406)
- Add language picker for docs (#2403)
- Add reindexing docs (#2393)
- Vaccuum log with every new deploy (#2390)

### Changed

- Fold BlockIndex into database (#2436)
- Prevent search when query field is empty (#2425)
- Make any zero-valued input inscription unbound (#2397)
- Tweak translations intructions (#2413)
- Remove unused itertools dependency (#2416)
- Update dependencies (#2414)
- Update clap (#2415)
- Use tapscript extraction from rust-bitcoin (#2404)
- Allocate blocks vector ahead of time (#2409)
- Deduplicate sat range summation logic (#2402)
- Inscriptions with unrecognized even fields are unbound and cursed (#2359)
- Remove unused content_response match statement (#2384)

### Fixed

- Fix type (#2444)
- Fix Chinese translation typos and format errors (#2419)
- Fix UTXO selection in mock Bitcoin Core instance(#2417)

[0.8.3](https://github.com/ordinals/ord/releases/tag/0.8.3) - 2023-08-28
------------------------------------------------------------------------

Expand Down
Loading

0 comments on commit c29d5ab

Please sign in to comment.