Skip to content

Commit

Permalink
Prepare for 0.3.9 release (#398)
Browse files Browse the repository at this point in the history
* Prepare for 0.3.9 release

* Add bevyengine/bevy#8124 to release notes

* Allow multiple syn versions
  • Loading branch information
nicoburns authored Mar 20, 2023
1 parent 4b19b7d commit 2942c70
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "taffy"
version = "0.3.8"
version = "0.3.9"
authors = [
"Alice Cecile <alice.i.cecile@gmail.com>",
"Johnathan Kelley <jkelleyrtp@gmail.com>",
Expand Down
6 changes: 6 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release Notes

## 0.3.9

### Fixes

- Fix caching bug where a cached result would sometimes be incorrectly used when the amount of available space increased (bevyengine/bevy#8111) and (bevyengine/bevy#8124)

## 0.3.8

### Fixes
Expand Down
6 changes: 5 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ skip = [
# This dependency won't actually end up in the final binary anyway as it a sub-dependency
# of num-cpus and atty only when targetting the hermit unikernel OS
# (https://github.com/hermitcore/rusty-hermit)
{ name = "hermit-abi" }
{ name = "hermit-abi" },

# Long-term we'll want to re-ban this. However it's going to take a while for the ecosystem to
# transition over to syn 2 and we don't want to block Taffy releases in the meantime.
{ name = "syn" },
]

[sources]
Expand Down

0 comments on commit 2942c70

Please sign in to comment.