aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md14
-rw-r--r--Cargo.toml2
-rw-r--r--src/lib.rs2
3 files changed, 16 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0909791..b341dca 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,17 @@
+1.2.0
+=====
+The most prominent change in this release of `byteorder` is the removal of
+unnecessary signaling NaN masking, and in turn, the `unsafe` annotations
+associated with methods that didn't do masking. See
+[#103](https://github.com/BurntSushi/byteorder/issues/103)
+for more details.
+
+* [BUG #102](https://github.com/BurntSushi/byteorder/issues/102):
+ Fix big endian tests.
+* [BUG #103](https://github.com/BurntSushi/byteorder/issues/103):
+ Remove sNaN masking.
+
+
1.1.0
=====
This release of `byteorder` features a number of fixes and improvements, mostly
diff --git a/Cargo.toml b/Cargo.toml
index 681b70a..6fed96b 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.1.0" #:version
+version = "1.2.0" #: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 2051f9b..ef83ce0 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.1.0")]
+#![doc(html_root_url = "https://docs.rs/byteorder/1.2.0")]
#[cfg(feature = "std")]
extern crate core;