Bump to v1.1.1

This commit is contained in:
Stjepan Glavina 2020-07-07 23:28:34 +02:00
parent e0a5665e74
commit 4552d305c1
3 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
# Version 1.1.1
- Forbid unsafe code.
# Version 1.1.0
- Mark `CachePadded::new()` as const fn.

View File

@ -1,6 +1,6 @@
[package]
name = "cache-padded"
version = "1.1.0"
version = "1.1.1"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
description = "Prevent false sharing by padding and aligning to the length of a cache line"

View File

@ -53,6 +53,8 @@
//! ```
#![no_std]
#![forbid(unsafe_code)]
#![warn(missing_docs, missing_debug_implementations, rust_2018_idioms)]
use core::fmt;
use core::ops::{Deref, DerefMut};