Skip to content

Commit

Permalink
Bump version (#226)
Browse files Browse the repository at this point in the history
  • Loading branch information
reknih authored Oct 3, 2024
1 parent 2390d9e commit a1a27dc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 0.7.0

- **Breaking change:** `Entry::page_range` now returns
`Option<&MaybeTyped<PageRanges>>` instead of `Option<&PageRanges>`. This fixes
a panic that occurred when a page range had an unknown format
- `MaybeTyped` now has an `as_typed` method

# 0.6.0

- **Breaking change:** Fix that the page range labels were not pluralized,
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hayagriva"
version = "0.6.0"
version = "0.7.0"
authors = ["Martin Haug <mhaug@live.de>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ default features by writing this in your `Cargo.toml`:

```toml
[dependencies]
hayagriva = { version = "0.6", default-features = false }
hayagriva = { version = "0.7", default-features = false }
```

### Selectors
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Language Association-style citation.
Hayagriva supports all styles provided in the
[official Citation Style Language repository](https://github.com/citation-style-language/styles),
currently over 2,600. You must provide your own style file, which can be
obtained there.
currently over 2,600. You can provide your own style files or use the ones
bundled with this library in the [`archive`] module.
# Usage
Expand Down Expand Up @@ -91,7 +91,7 @@ default features by writing this in your `Cargo.toml`:
```toml
[dependencies]
hayagriva = { version = "0.6", default-features = false }
hayagriva = { version = "0.7", default-features = false }
```
# Selectors
Expand Down

0 comments on commit a1a27dc

Please sign in to comment.