summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2019-06-07 01:00:10 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2019-06-07 01:00:10 +0000
commit196a90d074a648d792a2f0632cfc68e5f4d24805 (patch)
tree44063201e85272a3598203192edf1945ae768f3e
parentf9469afedd40e92c5074048fab7c298b22bf3961 (diff)
parent04e9588527bcc759b3f8320fa68e504fbf74d9d0 (diff)
downloadnix-196a90d074a648d792a2f0632cfc68e5f4d24805.zip
Merge #1081
1081: Release v0.14.1 r=asomers a=asomers Co-authored-by: Alan Somers <asomers@gmail.com>
-rw-r--r--CHANGELOG.md6
-rw-r--r--Cargo.toml2
-rw-r--r--README.md2
3 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8710c645..912b43e0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
### Added
+### Changed
+### Fixed
+### Removed
+
+## [0.14.1] - 2019-06-06
+### Added
- Macros exported by `nix` may now be imported via `use` on the Rust 2018
edition without importing helper macros on Linux targets.
([#1066](https://github.com/nix-rust/nix/pull/1066))
diff --git a/Cargo.toml b/Cargo.toml
index f8e4bee9..e8833a7a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "nix"
description = "Rust friendly bindings to *nix APIs"
-version = "0.14.0"
+version = "0.14.1"
authors = ["The nix-rust Project Developers"]
repository = "https://github.com/nix-rust/nix"
license = "MIT"
diff --git a/README.md b/README.md
index 9fbbac75..23a20532 100644
--- a/README.md
+++ b/README.md
@@ -88,7 +88,7 @@ To use `nix`, first add this to your `Cargo.toml`:
```toml
[dependencies]
-nix = "0.14.0"
+nix = "0.14.1"
```
Then, add this to your crate root: