Skip to content

Commit 5cde073

Browse files
committed
annotate-snippets 0.7.0
1 parent 80ea580 commit 5cde073

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44

55
-
66

7+
## annotate-snippets 0.7.0 (March 30, 2020)
8+
9+
- Refactor API to use `fmt::Display` (#27)
10+
- Fix SourceAnnotation range (#27)
11+
- Fix column numbers (#22)
12+
- Derive `PartialEq` for `AnnotationType` (#19)
13+
- Update `ansi_term` to 0.12.
14+
715
## annotate-snippets 0.6.1 (July 23, 2019)
816

917
- Fix too many anonymized line numbers (#5)

Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "annotate-snippets"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
edition = "2018"
55
authors = ["Zibi Braniecki <[email protected]>"]
66
description = "Library for building code annotations"
@@ -16,14 +16,14 @@ coveralls = { repository = "rust-lang/annotate-snippets-rs", branch = "master",
1616
maintenance = { status = "actively-developed" }
1717

1818
[dependencies]
19-
ansi_term = { version = "^0.12", optional = true }
19+
ansi_term = { version = "0.12", optional = true }
2020

2121
[dev-dependencies]
22-
glob = "^0.3"
23-
serde_yaml = "^0.8"
24-
serde = { version = "^1.0", features = ["derive"] }
25-
difference = "^2.0"
26-
ansi_term = "^0.12"
22+
glob = "0.3"
23+
serde_yaml = "0.8"
24+
serde = { version = "1.0", features = ["derive"] }
25+
difference = "2.0"
26+
ansi_term = "0.12"
2727
criterion = "0.3"
2828

2929
[[bench]]

0 commit comments

Comments
 (0)