Skip to content

Commit

Permalink
0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danburkert committed Oct 29, 2017
1 parent 881b505 commit 59ce48b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "memmap"
# NB: When modifying, also modify html_root_url in lib.rs
version = "0.5.2"
version = "0.6.0"
authors = ["Dan Burkert <[email protected]>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/danburkert/memmap-rs"
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# memmap

A Rust library for cross-platform memory mapped file IO. `memmap` requires Rust
stable 1.8 or greater.
A Rust library for cross-platform memory mapped IO.

[Documentation](https://docs.rs/memmap)

[![Linux Status](https://travis-ci.org/danburkert/memmap-rs.svg?branch=master)](https://travis-ci.org/danburkert/memmap-rs)
[![Build status](https://ci.appveyor.com/api/projects/status/ubka00959pstatkg/branch/master?svg=true)](https://ci.appveyor.com/project/danburkert/mmap)

Expand All @@ -23,6 +21,7 @@ stable 1.8 or greater.

`memmap` should work on any platform supported by
[`libc`](https://github.com/rust-lang-nursery/libc#platforms-and-documentation).
`memmap` requires Rust stable 1.13 or greater.

`memmap` is continuously tested on:
* `x86_64-unknown-linux-gnu` (Linux)
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! A cross-platform Rust API for memory mapped buffers.
#![doc(html_root_url = "https://docs.rs/memmap/0.5.2")]
#![doc(html_root_url = "https://docs.rs/memmap/0.6.0")]

#[cfg(windows)]
mod windows;
Expand Down

0 comments on commit 59ce48b

Please sign in to comment.