Skip to content

Commit

Permalink
Allow newer notify in autoreload (#688)
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko authored Jan 28, 2025
1 parent bf672a4 commit 5ade42c
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 32 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ All notable changes to MiniJinja are documented here.
- CLI moved from `serde_yml` to `serde_yaml`. #684
- Improved undefined error reporting. Undefined values will now in most
cases point to exactly where the error happened. #686
- Allow newer notify dependency versions (up to 8.x) for the autoreload
crate. #688

## 2.6.0

Expand Down
50 changes: 19 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion minijinja-autoreload/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ watch-fs = ["notify"]

[dependencies]
minijinja = { version = "2.6.0", path = "../minijinja", default-features = false }
notify = { version = ">=5.0.0,<8.0.0", optional = true, default-features = false, features = ["macos_fsevent"] }
notify = { version = ">=5.0.0,<9.0.0", optional = true, default-features = false, features = ["macos_fsevent"] }

[dev-dependencies]
minijinja = { version = "2.6.0", path = "../minijinja", features = ["loader"] }

0 comments on commit 5ade42c

Please sign in to comment.