Skip to content

Commit 9415fcb

Browse files
committed
v0.8.15
1 parent a8d7233 commit 9415fcb

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

CHANGELOG.md

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

3+
## [0.8.15] - 2023-09-17
4+
5+
### Added:
6+
7+
- Implement `JsonSchema` for `BigDecimal` from `bigdecimal` 0.4 (https://github.com/GREsau/schemars/pull/237)
8+
39
## [0.8.14] - 2023-09-17
410

511
### Added:

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,8 @@ Schemars can implement `JsonSchema` on types from several popular crates, enable
270270
- `bytes` - [bytes](https://crates.io/crates/bytes) (^1.0)
271271
- `enumset` - [enumset](https://crates.io/crates/enumset) (^1.0)
272272
- `rust_decimal` - [rust_decimal](https://crates.io/crates/rust_decimal) (^1.0)
273-
- `bigdecimal` - [bigdecimal](https://crates.io/crates/bigdecimal) (^0.3)
273+
- `bigdecimal03` - [bigdecimal](https://crates.io/crates/bigdecimal) (^0.3)
274+
- `bigdecimal04` - [bigdecimal](https://crates.io/crates/bigdecimal) (^0.4)
274275
- `smol_str` - [smol_str](https://crates.io/crates/smol_str) (^0.1.17)
275276
- `semver` - [semver](https://crates.io/crates/semver) (^1.0.9)
276277

docs/4-features.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ Schemars can implement `JsonSchema` on types from several popular crates, enable
2727
- `bytes` - [bytes](https://crates.io/crates/bytes) (^1.0)
2828
- `enumset` - [enumset](https://crates.io/crates/enumset) (^1.0)
2929
- `rust_decimal` - [rust_decimal](https://crates.io/crates/rust_decimal) (^1.0)
30-
- `bigdecimal` - [bigdecimal](https://crates.io/crates/bigdecimal) (^0.3)
30+
- `bigdecimal03` - [bigdecimal](https://crates.io/crates/bigdecimal) (^0.3)
31+
- `bigdecimal04` - [bigdecimal](https://crates.io/crates/bigdecimal) (^0.4)
3132
- `smol_str` - [smol_str](https://crates.io/crates/smol_str) (^0.1.17)
3233
- `semver` - [semver](https://crates.io/crates/semver) (^1.0.9)
3334

schemars/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "schemars"
33
description = "Generate JSON Schemas from Rust code"
44
homepage = "https://graham.cool/schemars/"
55
repository = "https://github.com/GREsau/schemars"
6-
version = "0.8.14"
6+
version = "0.8.15"
77
authors = ["Graham Esau <gesau@hotmail.co.uk>"]
88
edition = "2021"
99
license = "MIT"
@@ -14,7 +14,7 @@ build = "build.rs"
1414
rust-version = "1.60"
1515

1616
[dependencies]
17-
schemars_derive = { version = "=0.8.14", optional = true, path = "../schemars_derive" }
17+
schemars_derive = { version = "=0.8.15", optional = true, path = "../schemars_derive" }
1818
serde = { version = "1.0", features = ["derive"] }
1919
serde_json = "1.0.25"
2020
dyn-clone = "1.0"

schemars_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "schemars_derive"
33
description = "Macros for #[derive(JsonSchema)], for use with schemars"
44
homepage = "https://graham.cool/schemars/"
55
repository = "https://github.com/GREsau/schemars"
6-
version = "0.8.14"
6+
version = "0.8.15"
77
authors = ["Graham Esau <gesau@hotmail.co.uk>"]
88
edition = "2021"
99
license = "MIT"

0 commit comments

Comments
 (0)