diff --git a/CHANGELOG.md b/CHANGELOG.md index 705cadf..03e1dc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,9 @@ All notable changes to this project will be documented in this file. -## Unreleased +## 0.4.0 2023-06-07 + +Changed serialization of all structures to use OCPI rounding. Added library support for OCPI 2.1.1 that can be enabled with feature flag `ocpi-v211`. diff --git a/Cargo.toml b/Cargo.toml index 9a594e2..ec5b520 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "0.3.2" +version = "0.4.0" edition = "2021" readme = "README.md" repository = "https://github.com/tandemdrive/ocpi-tariffs" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index caffcd2..37fd61e 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -16,7 +16,7 @@ chrono-tz.workspace = true chrono = { version = "0.4.24", default-features = false, features = ["alloc", "serde"] } clap = { version = "4.3.0", features = ["derive"] } console = { version = "0.15.7" } -ocpi-tariffs = { version = "0.3.2", path = "../ocpi-tariffs", features = ["ocpi-v211"] } +ocpi-tariffs = { version = "0.4.0", path = "../ocpi-tariffs", features = ["ocpi-v211"] } serde_json.workspace = true serde.workspace = true tabled = { version = "0.12.0", features = ["color"] }