From 89c135eedec4244e99b00fe6f96801e35b4ff393 Mon Sep 17 00:00:00 2001 From: Simon Ochsenreither Date: Sun, 19 Mar 2023 14:12:09 +0100 Subject: [PATCH] Release 5.0.0 --- Cargo.toml | 2 +- README.md | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1192981..d8119c6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dirs" -version = "4.0.0" +version = "5.0.0" authors = ["Simon Ochsenreither "] description = "A tiny low-level library that provides platform-specific standard locations of directories for config, cache and other data on Linux, Windows, macOS and Redox by leveraging the mechanisms defined by the XDG base/user directory specifications on Linux, the Known Folder API on Windows, and the Standard Directory guidelines on macOS." readme = "README.md" diff --git a/README.md b/README.md index 9197b54..823fae4 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ and on the JVM ([directories-jvm](https://github.com/dirs-dev/directories-jvm)). Add the library as a dependency to your project by inserting ```toml -dirs = "4.0" +dirs = "5.0" ``` into the `[dependencies]` section of your Cargo.toml file. @@ -168,6 +168,11 @@ cargo build --target=x86_64-unknown-redox ## Changelog +### 5 + +- Update `dirs-sys` dependency to `0.4.0`. +- Add `config_local_dir` for non-roaming configuration on Windows. On non-Windows platforms the behavior is identical to `config dir`. + ### 4 - **BREAKING CHANGE** The behavior of `executable_dir` has been adjusted to not depend on `$XDG_DATA_HOME`.