diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b7f412..e94bfdc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 0.8.0 + +- **Breaking change:** Fixed deserialization of page ranges, + removing `From for PageRanges` +- Added support for disambiguation to alphanumeric citation style +- Raised limit for disambiguation resolving in complex cases +- The year 0 will now render as 1BC for CSL + # 0.7.0 - **Breaking change:** `Entry::page_range` now returns diff --git a/Cargo.toml b/Cargo.toml index 7a2aa21..69ff081 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hayagriva" -version = "0.7.0" +version = "0.8.0" authors = ["Martin Haug "] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index cb26469..eda6357 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ default features by writing this in your `Cargo.toml`: ```toml [dependencies] -hayagriva = { version = "0.7", default-features = false } +hayagriva = { version = "0.8", default-features = false } ``` ### Selectors diff --git a/src/lib.rs b/src/lib.rs index 2dfcc78..619c868 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -91,7 +91,7 @@ default features by writing this in your `Cargo.toml`: ```toml [dependencies] -hayagriva = { version = "0.7", default-features = false } +hayagriva = { version = "0.8", default-features = false } ``` # Selectors