aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2017-11-29 16:45:17 -0500
committerAndrew Gallant <jamslam@gmail.com>2017-11-29 16:45:17 -0500
commit610bf24463cb6ec06e57405b672dea33713689a1 (patch)
treee1c9cbec559cd01c9d3a579b44d0a32b7599763a
parent27b9144a7ef334c940ba2d133e41df912a673977 (diff)
downloadbyteorder-610bf24463cb6ec06e57405b672dea33713689a1.tar.gz
1.2.1
-rw-r--r--CHANGELOG.md8
-rw-r--r--Cargo.toml2
-rw-r--r--src/lib.rs2
3 files changed, 10 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b341dca..d59eaa7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+1.2.1
+=====
+This patch release removes more unnecessary uses of `unsafe` that
+were overlooked in the prior `1.2.0` release. In particular, the
+`ReadBytesExt::read_{f32,f64}_into_checked` methods have been deprecated and
+replaced by more appropriately named `read_{f32,f64}_into` methods.
+
+
1.2.0
=====
The most prominent change in this release of `byteorder` is the removal of
diff --git a/Cargo.toml b/Cargo.toml
index 6fed96b..55ec05e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "byteorder"
# NB: When modifying, also modify html_root_url in lib.rs
-version = "1.2.0" #:version
+version = "1.2.1" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = "Library for reading/writing numbers in big-endian and little-endian."
documentation = "https://docs.rs/byteorder"
diff --git a/src/lib.rs b/src/lib.rs
index ef83ce0..0654e88 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -40,7 +40,7 @@ assert_eq!(wtr, vec![5, 2, 0, 3]);
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(feature = "i128", feature(i128_type))]
#![cfg_attr(all(feature = "i128", test), feature(i128))]
-#![doc(html_root_url = "https://docs.rs/byteorder/1.2.0")]
+#![doc(html_root_url = "https://docs.rs/byteorder/1.2.1")]
#[cfg(feature = "std")]
extern crate core;