aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2018-11-21 09:41:57 -0800
committerEric Huss <eric@huss.org>2018-11-21 09:41:57 -0800
commit340c47b5f350219a96166560e0b6ec9ddaffc080 (patch)
tree43233550f7d29f987d07f29a73f1840079ce4181
parentf610ef33f4c12e363945ad3c80a1129b0389a699 (diff)
downloadmilf-rs-340c47b5f350219a96166560e0b6ec9ddaffc080.tar.gz
milf-rs-340c47b5f350219a96166560e0b6ec9ddaffc080.zip
Indicate this is now supporting version 0.5 of TOML.
-rw-r--r--README.md2
-rw-r--r--src/lib.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 9fb8b8c..6424c1f 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@
[![Documentation](https://docs.rs/toml/badge.svg)](https://docs.rs/toml)
A [TOML][toml] decoder and encoder for Rust. This library is currently compliant
-with the v0.4.0 version of TOML. This library will also likely continue to stay
+with the v0.5.0 version of TOML. This library will also likely continue to stay
up to date with the TOML specification as changes happen.
[toml]: https://github.com/toml-lang/toml
diff --git a/src/lib.rs b/src/lib.rs
index 2f038e8..e36ff52 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,6 +1,6 @@
//! A [TOML]-parsing library
//!
-//! This library implements a [TOML] v0.4.0 compatible parser,
+//! This library implements a [TOML] v0.5.0 compatible parser,
//! primarily supporting the [`serde`] library for encoding/decoding
//! various types in Rust.
//!