Skip to content

Commit dbbe185

Browse files
committed
prepare version 1.0.3
1 parent fda4d5e commit dbbe185

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [1.0.3] - 2022-08-30
4+
5+
### Added
6+
7+
- This crate is now compatible with no-std ([#2]). Thanks [Finomnis] for your first contribution!
8+
9+
[#2]: https://github.com/sunshowers-code/debug-ignore/pull/2
10+
[Finomnis]: https://github.com/Finomnis
11+
312
## [1.0.2] - 2022-03-17
413

514
### Added

Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
[package]
22
name = "debug-ignore"
33
description = "A newtype wrapper that causes a field to be skipped while printing out Debug output."
4-
version = "1.0.2"
4+
version = "1.0.3"
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/sunshowers-code/debug-ignore"
77
documentation = "https://docs.rs/debug-ignore"
88
keywords = ["no-std"]
99

1010
[dependencies]
11-
serde = { version = "1", optional = true, default-features = false, features = ["derive"] }
11+
serde = { version = "1", optional = true, default-features = false, features = [
12+
"derive",
13+
] }
1214

1315
[dev-dependencies]
1416
serde_json = "1"

0 commit comments

Comments
 (0)