summaryrefslogtreecommitdiffstats
path: root/vendor/dirs-next/CHANGELOG.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /vendor/dirs-next/CHANGELOG.md
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/dirs-next/CHANGELOG.md')
-rw-r--r--vendor/dirs-next/CHANGELOG.md60
1 files changed, 60 insertions, 0 deletions
diff --git a/vendor/dirs-next/CHANGELOG.md b/vendor/dirs-next/CHANGELOG.md
new file mode 100644
index 000000000..474a2d1a0
--- /dev/null
+++ b/vendor/dirs-next/CHANGELOG.md
@@ -0,0 +1,60 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
+and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+
+<!--
+# Guiding Principles
+
+* Changelogs are for _humans_, not machines.
+* There should be an entry for every single version.
+* The same types of changes should be grouped.
+* Versions and sections should be linkable.
+* The latest version comes first.
+* The release date of each version is displayed.
+* Mention whether you follow Semantic Versioning.
+
+# Types of changes
+
+* `Added` for new features.
+* `Changed` for changes in existing functionality.
+* `Deprecated` for soon-to-be removed features.
+* `Removed` for now removed features.
+* `Fixed` for any bug fixes.
+* `Security` in case of vulnerabilities.
+ -->
+
+<!-- next-header -->
+## [Unreleased] - ReleaseDate
+
+## [2.0.0] - 2020-10-22
+### Breaking changed
+* Behavior of `config_dir` on macOS is changed.
+ According to [Apple guideline][appple-configdir], configuration files should be placed
+ in subdirectory of `Library/Application Support`. The old behavior of `config_dir`
+ returns `Library/Preferences`, which is incorrect. As users should use `CFPreferences`
+ API to get and set preference values for their app instead.
+
+[appple-configdir]: https://developer.apple.com/library/archive/documentation/FileManagement/Conceptual/FileSystemProgrammingGuide/FileSystemOverview/FileSystemOverview.html#//apple_ref/doc/uid/TP40010672-CH2-SW1
+
+## [1.0.2] - 2020-10-13
+### Changed
+* Bump cfg-if version to v1
+
+## [1.0.1]
+### Fixed
+* Relax pinning `cfg-if` at `0.1.9`. Previously we inherited that from upstream repository when forking.
+ The original author wanted to keep minimum Rust version at 1.13 which we don't anymore.
+
+## [1.0.0] - 2020-05-17
+
+This is the re-publish of `dirs` crate as is.
+
+<!-- next-url -->
+[Unreleased]: https://github.com/xdg-rs/dirs/compare/dirs-v2.0.0...HEAD
+[2.0.0]: https://github.com/xdg-rs/dirs/compare/dirs-v1.0.2...dirs-v2.0.0
+[1.0.2]: https://github.com/xdg-rs/dirs/compare/dirs-v1.0.1...dirs-v1.0.2
+[1.0.1]: https://github.com/xdg-rs/dirs/compare/dirs-v1.0.0...dirs-v1.0.1
+[1.0.0]: https://github.com/xdg-rs/dirs/releases/tag/dirs-v1.0.0