From 7d89a6d061f5795859c7d7da7a146f109c088bb4 Mon Sep 17 00:00:00 2001 From: Lzu Tao Date: Tue, 29 Oct 2019 00:05:16 +0700 Subject: [PATCH] chore: bump to 0.1.3 --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 388a09559..1e07ee01a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,9 +26,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * `Security` in case of vulnerabilities. --> +## [0.1.3] - 2019-10-28 +### Changed +* Obtain appropriate privilege before opening directories. + ## [0.1.0] - 2019-05-15 First release [0.2.0]: https://github.com/lzutao/junction/compare/v0.1.0...v0.2.0 +[0.2.0]: https://github.com/lzutao/junction/compare/v0.1.0...v0.1.3 [0.1.0]: https://github.com/lzutao/junction/releases/tag/v0.1.0 diff --git a/Cargo.toml b/Cargo.toml index 7466e4076..f94c8c605 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "junction" -version = "0.1.2" # Also update `html_root_url` in lib.rs +version = "0.1.3" # Also update `html_root_url` in lib.rs authors = ["Lzu Tao "] categories = ["api-bindings", "os::windows-apis"] documentation = "https://docs.rs/junction/*/x86_64-pc-windows-msvc/junction/" diff --git a/src/lib.rs b/src/lib.rs index edd3e5218..e29919039 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -10,7 +10,7 @@ if the directory `D:\SYMLINK` specified `C:\WINNT\SYSTEM32` as its target, then an application accessing `D:\SYMLINK\DRIVERS` would in reality be accessing `C:\WINNT\SYSTEM32\DRIVERS`. */ -#![doc(html_root_url = "https://docs.rs/junction/0.1.2")] +#![doc(html_root_url = "https://docs.rs/junction/0.1.3")] #![cfg(windows)] #![deny(rust_2018_idioms)]