Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# Version 0.4.4

This update includes the underlying update to `[email protected]` which adds
support for `LiveScript` and `Sass` when using the `fancy-regex` backend.

## Deps

- Update outdated dependencies #131

## Internal

- Depend on `serde` and `serde_derive` separately #107

# Version 0.4.3

Fixes builds for dependents that use set `#[cfg(fuzzing)]`
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ twox-hash = { version = "2.1.1", default-features = false, features = ["std", "x

[package]
name = "two-face"
version = "0.4.3"
version = "0.4.4"
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.70.0"
rust-version = "1.79.0"
include = [
"src",
"generated/acknowledgements_full.bin",
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ two-face = { version = ..., default-features = false, features = ["syntect-fancy
/// ```
/// assert_eq!(
/// two_face::acknowledgement_url(),
/// "https://github.com/CosmicHorrorDev/two-face/blob/v0.4.3/generated/acknowledgements_full.md"
/// "https://github.com/CosmicHorrorDev/two-face/blob/v0.4.4/generated/acknowledgements_full.md"
/// );
/// ```
pub fn acknowledgement_url() -> &'static str {
Expand Down
Loading