Skip to content

Commit

Permalink
chore: add changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
KoltesDigital committed Oct 4, 2022
1 parent bab8283 commit d88cbf1
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
22 changes: 22 additions & 0 deletions dokan-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# 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).

## [Unreleased]

## [0.3.1] - 2022-10-04

### Added

- Various `FILE_*` constants.
- `VOLUME_SECURITY_DESCRIPTOR_MAX_SIZE`

### Changed

- Upgrade to **Dokan 2.0.6**.

[unreleased]: https://github.com/dokan-dev/dokan-rust/compare/[email protected]
[0.3.1]: https://github.com/dokan-dev/dokan-rust/releases/tag/[email protected]
34 changes: 34 additions & 0 deletions dokan/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# 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).

## [Unreleased]

## [0.3.1] - 2022-10-04

### Added

- `FileSystemHandle` to send a `DOKAN_HANDLE` across threads.
- `map_win32_error_to_ntstatus`
- `win32_ensure`
- In `memfs` example: add status messages and show how another thread can unmount the file system.

### Changed

- Upgrade to **Dokan 2.0.6** through `dokan-sys`.
- Split the code into multiple files.
- Replace `Drive` builder by `FileSystemMounter` and `MountOptions`.
- Operations errors are simply `NTSTATUS`.
To return errors from `GetLastError`, use `win32_ensure` or `map_win32_error_to_ntstatus`.
- Access mount point list through an iterator.

### Fixed

- Access to dangling pointer caused panic when the file system handle was used.
It's the reason for `FileSystemMounter`, which keeps needed variables onto the stack.

[unreleased]: https://github.com/dokan-dev/dokan-rust/compare/[email protected]
[0.3.1]: https://github.com/dokan-dev/dokan-rust/releases/tag/[email protected]

0 comments on commit d88cbf1

Please sign in to comment.