Skip to content

Commit

Permalink
Update changelog, use action to install cargo-hack so that the MSRV…
Browse files Browse the repository at this point in the history
… doesn't

need to follow it and it should be faster, add cargo-deny exception for
Unicode-DFS-2016 license in unicode-ident
  • Loading branch information
Imberflur committed Jun 6, 2023
1 parent 635ee21 commit e2a7300
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
4 changes: 4 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
]

0 comments on commit e2a7300

Please sign in to comment.