diff options
| author | 2024-02-24 21:54:25 +0800 | |
|---|---|---|
| committer | 2024-02-24 21:54:25 +0800 | |
| commit | 6f2be12fb7d5083388ba5b44034b8196111ff2f8 (patch) | |
| tree | e24847d3d080ef3326b2cbd348f0fab80db0aba7 | |
| parent | 7d9ae7613aa7f0713be61a5734cf8ac94b966b1a (diff) | |
| parent | 4ca59a3a40ce894cd0a0bf958c7c870412ada397 (diff) | |
| download | infini-6f2be12fb7d5083388ba5b44034b8196111ff2f8.tar.gz infini-6f2be12fb7d5083388ba5b44034b8196111ff2f8.zip | |
Merge branch 'master' of https://github.com/HydroRoll-Team/infiniv2.0.5
| -rw-r--r-- | .github/workflows/changelog.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/release-drafter.yml | 2 | ||||
| -rw-r--r-- | CHANGELOG.md | 15 | ||||
| -rw-r--r-- | docs/source/conf.py | 4 |
4 files changed, 18 insertions, 5 deletions
diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 99075711..e61b888d 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -30,7 +30,7 @@ jobs: useGitmojis: false - name: Create Release - uses: ncipollo/release-action@v1.13.0 + uses: ncipollo/release-action@v1.14.0 with: allowUpdates: true draft: false diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index d7ca692e..84492e31 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -32,7 +32,7 @@ jobs: # echo "GHE_HOST=${GITHUB_SERVER_URL##https:\/\/}" >> $GITHUB_ENV # Drafts your next Release notes as Pull Requests are merged into "master" - - uses: release-drafter/release-drafter@v5 + - uses: release-drafter/release-drafter@v6 # (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml # with: # config-name: my-config.yml diff --git a/CHANGELOG.md b/CHANGELOG.md index eb7b0e97..50d81082 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v2.0.4] - 2024-01-30 +### New Features +- [`09a6fbd`](https://github.com/HydroRoll-Team/infini/commit/09a6fbd72a9948bb539da4a5b1dd0ed7e5885e0a) - **internal**: auto register sub-packages into father package without new register variable *(commit by [@fu050409](https://github.com/fu050409))* +- [`659da68`](https://github.com/HydroRoll-Team/infini/commit/659da6810699233b1a537c985bf4b67ce3b5ee26) - **core**: add empty Output checking and block checking *(commit by [@fu050409](https://github.com/fu050409))* + +### Bug Fixes +- [`0668c8f`](https://github.com/HydroRoll-Team/infini/commit/0668c8fe973eef236d1a7c0e9b747795bfd3b098) - **loader**: fix loader won't load pre-interceptors *(commit by [@fu050409](https://github.com/fu050409))* + +### Chores +- [`82bbfc6`](https://github.com/HydroRoll-Team/infini/commit/82bbfc63ab85e9253b70955cc37d34c3d3d20332) - **infini**: bump infini into v2.0.4 *(commit by [@fu050409](https://github.com/fu050409))* + + ## [v2.0.3a1] - 2024-01-29 ### BREAKING CHANGES - due to [`34ce1fb`](https://github.com/HydroRoll-Team/infini/commit/34ce1fbbe23470d702929e5951177ce0cec96bc7) - update license *(commit by [@HsiangNianian](https://github.com/HsiangNianian))*: @@ -40,4 +52,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [v2.0.2a3]: https://github.com/HydroRoll-Team/infini/compare/v2.0.2-alpha.2...v2.0.2a3 -[v2.0.3a1]: https://github.com/HydroRoll-Team/infini/compare/v2.0.2...v2.0.3a1
\ No newline at end of file +[v2.0.3a1]: https://github.com/HydroRoll-Team/infini/compare/v2.0.2...v2.0.3a1 +[v2.0.4]: https://github.com/HydroRoll-Team/infini/compare/v2.0.3...v2.0.4
\ No newline at end of file diff --git a/docs/source/conf.py b/docs/source/conf.py index 319cfd92..9890225d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -67,10 +67,10 @@ gettext_uuid = True # optional. html_theme = "furo" html_static_path = ["../_static"] -html_logo = ( +_html_logo = ( "https://cdn.jsdelivr.net/gh/HydroRoll-Team/infini@master/docs/_static/logo.png" ) -html_favicon = html_logo +html_favicon = _html_logo html_css_files = [ "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/fontawesome.min.css", |
