From e2a730083efa2a7d783354da02cad87dce594989 Mon Sep 17 00:00:00 2001 From: Imbris Date: Tue, 6 Jun 2023 01:28:38 -0400 Subject: [PATCH] Update changelog, use action to install `cargo-hack` so that the MSRV doesn't need to follow it and it should be faster, add cargo-deny exception for Unicode-DFS-2016 license in unicode-ident --- .github/workflows/ci.yml | 3 ++- CHANGELOG.md | 3 +++ deny.toml | 4 ++++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d1d180b7f..abfd05d63 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,7 +56,8 @@ jobs: # if: matrix.toolchain == 'stable' && matrix.os == 'ubuntu-latest' # run tests - - run: cargo install cargo-hack + - name: install cargo-hack + uses: taiki-e/install-action@cargo-hack - run: cargo hack test --workspace --each-feature if: matrix.toolchain == 'nightly' - run: cargo hack test --workspace --each-feature --skip nightly diff --git a/CHANGELOG.md b/CHANGELOG.md index 7eadb362a..8bc49782e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,11 @@ # 0.19.0 (2022-07-15) +* Added index where entity deletion stopped to the error returned from `WorldExt::delete_entities` ([#766]) +* Fix bug where deleting an entity with the wrong generation could clear the components of an existing entity. ([#766]) * Bump shred to version `0.14.1`, MSRV to 1.60.0 ([shred changelog][shred-changelog], [#756]) [#756]: https://github.com/amethyst/specs/pull/756 +[#766]: https://github.com/amethyst/specs/pull/766 # 0.18.0 (2022-07-02) diff --git a/deny.toml b/deny.toml index d6bcf3a73..a11550548 100644 --- a/deny.toml +++ b/deny.toml @@ -28,3 +28,7 @@ allow = ["MIT", "Apache-2.0", "Unlicense", "BSD-3-Clause"] # We want really high confidence when inferring licenses from text confidence-threshold = 0.93 + +exceptions = [ + { allow = ["Unicode-DFS-2016"], name = "unicode-ident" }, +]