Skip to content

Commit

Permalink
annotate-snippets 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zbraniecki committed Mar 30, 2020
1 parent 80ea580 commit 5cde073
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@

-

## annotate-snippets 0.7.0 (March 30, 2020)

- Refactor API to use `fmt::Display` (#27)
- Fix SourceAnnotation range (#27)
- Fix column numbers (#22)
- Derive `PartialEq` for `AnnotationType` (#19)
- Update `ansi_term` to 0.12.

## annotate-snippets 0.6.1 (July 23, 2019)

- Fix too many anonymized line numbers (#5)
Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "annotate-snippets"
version = "0.6.1"
version = "0.7.0"
edition = "2018"
authors = ["Zibi Braniecki <[email protected]>"]
description = "Library for building code annotations"
Expand All @@ -16,14 +16,14 @@ coveralls = { repository = "rust-lang/annotate-snippets-rs", branch = "master",
maintenance = { status = "actively-developed" }

[dependencies]
ansi_term = { version = "^0.12", optional = true }
ansi_term = { version = "0.12", optional = true }

[dev-dependencies]
glob = "^0.3"
serde_yaml = "^0.8"
serde = { version = "^1.0", features = ["derive"] }
difference = "^2.0"
ansi_term = "^0.12"
glob = "0.3"
serde_yaml = "0.8"
serde = { version = "1.0", features = ["derive"] }
difference = "2.0"
ansi_term = "0.12"
criterion = "0.3"

[[bench]]
Expand Down

0 comments on commit 5cde073

Please sign in to comment.