Skip to content

Commit f36376e

Browse files
committed
Release 2.0.1.0
1 parent 8c8764f commit f36376e

File tree

4 files changed

+22
-9
lines changed

4 files changed

+22
-9
lines changed

CHANGELOG.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88

9-
## [2.0.0.0] - 2022-01-01
10-
- Support dokany 2.0.0.
9+
## [2.0.1.0] - 2022-01-01
10+
11+
### Added
12+
- Support dokany 2.1.0 and the new async mount API.
1113

1214
## [1.5.0.0] - 2021-05-30
15+
1316
### Added
1417
- Add `ILogger.DebugEnabled` to reduce memory allocation produce by logs like `BufferPool`.
1518

1619
## [1.4.0.0] - 2020-06-02
20+
1721
### Added
1822
- Replace `DokanOptions` of dokany 1.4.0 `OptimizeSingleNameSearch` to `EnableFCBGC`.
1923
- Support for .NET Standard 2.0
2024

2125
## [1.3.0.0] - 2019-10-09
26+
2227
### Added
2328
- Support dokany 1.3.0 `DokanNotify` feature in `Dokan.Notify` class.
2429
- New `DokanOptions` of dokany 1.3.0 `DisableOplocks` and `OptimizeSingleNameSearch`.
@@ -33,10 +38,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3338
- Avoid `ConsoleLogger` to switch color and never go back to the original due to multi threading.
3439

3540
## [1.1.2.1] - 2018-12-20
41+
3642
### Changed
3743
- Improve Buffer Handling to Reduce GC Pressure.
3844

3945
## [1.1.2.0] - 2018-08-10
46+
4047
### Added
4148
- Included a strongly typed error code in ``DokanException`` to better communicate the reason why mounting failed.
4249
- [``NotADirectory``][1.1.2.0-NotADirectory] enum value to ``DokanResult``.
@@ -53,6 +60,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
5360
- ``DokanMain`` throw wrongly when success
5461

5562
## [1.1.1.1] - 2018-04-25
63+
5664
### Added
5765
- Enum value [``FileAccess.None``][1.1.1.1-FileAccess.None].
5866
- Handle unknown errors from Dokan.
@@ -63,6 +71,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6371
- Make ``MaximumComponentLength`` param available for ``GetVolumeInformation``.
6472

6573
## [1.1.1.0] - 2017-12-01
74+
6675
### Added
6776
- Support for .NET Standard 1.3
6877

@@ -78,20 +87,23 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7887
- Test - Appveyor is now Green !
7988

8089
## [1.1.0.3] - 2017-03-29
90+
8191
### Added
8292
- [``DokanHelper.DokanIsNameInExpression``][1.1.0.3-DokanIsNameInExpression] to help [``IDokanOperations.FindFilesWithPatter``][1.1.0.3-FindFilesWithPatter] filter the list of possible files.
8393

8494
[1.1.0.3-DokanIsNameInExpression]: https://github.com/dokan-dev/dokan-dotnet/blob/master/DokanNet/DokanHelper.cs#L48
8595
[1.1.0.3-FindFilesWithPatter]: https://github.com/dokan-dev/dokan-dotnet/blob/master/DokanNet/IDokanOperations.cs#L163
8696

8797
## [1.1.0.1] - 2016-11-01
98+
8899
### Added
89100
- Update documentation for Delete functions according to Dokany changes.
90101

91102
### Fixed
92103
- ``SetFileTimeProxy`` could throw without return a proper error.
93104

94105
## [1.1.0.0] - 2016-09-21
106+
95107
### Added
96108
- This CHANGELOG.md.
97109
- Support for .NET Framework 4.6
@@ -127,6 +139,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
127139
[1.1.0-AccessSystemSecurity]: https://github.com/dokan-dev/dokan-dotnet/blob/v1.1.0.0/DokanNet/FileAccess.cs#L189
128140

129141
## [1.0.8] - 2015-12-09
142+
130143
### Added
131144
- Support for timeout using [``Dokan.Mount``][1.0.8-Mount].
132145
- [``IDokanOperations.FindStreams``][1.0.8-FindStreams].
@@ -163,8 +176,8 @@ See the [release note](http://web.archive.org/web/20150416102451/http://dokan-de
163176
- ``DokanOptions.Version``, ``DokanOptions.RemovableDrive`` and ``DokanOptions.MountPoint``
164177
- ``DokanRemoveMountPoint``
165178

166-
[Unreleased]: https://github.com/dokan-dev/dokan-dotnet/compare/v2.0.0.0...HEAD
167-
[2.0.0.0]: https://github.com/dokan-dev/dokan-dotnet/compare/v1.5.0.0...v2.0.0.0
179+
[Unreleased]: https://github.com/dokan-dev/dokan-dotnet/compare/v2.0.1.0...HEAD
180+
[2.0.1.0]: https://github.com/dokan-dev/dokan-dotnet/compare/v1.5.0.0...v2.0.1.0
168181
[1.5.0.0]: https://github.com/dokan-dev/dokan-dotnet/compare/v1.4.0.0...v1.5.0.0
169182
[1.4.0.0]: https://github.com/dokan-dev/dokan-dotnet/compare/v1.3.0.0...v1.4.0.0
170183
[1.3.0.0]: https://github.com/dokan-dev/dokan-dotnet/compare/v1.1.2.1...v1.3.0.0

DokanNet/DokanNet.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88

99
This is a .NET wrapper over Dokan, and allows you to create your own file systems in Windows.</Description>
1010
<Copyright>Copyright (C) 2022</Copyright>
11-
<Version>2.0.0.0</Version>
12-
<AssemblyVersion>2.0.0.0</AssemblyVersion>
13-
<FileVersion>2.0.0.0</FileVersion>
11+
<Version>2.0.1.0</Version>
12+
<AssemblyVersion>2.0.1.0</AssemblyVersion>
13+
<FileVersion>2.0.1.0</FileVersion>
1414
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1515
<Company>Dokan-dev</Company>
1616
<Authors>AdrienJ, MaximeC, Hiroki Asakawa</Authors>

DokanNet/documentations/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = Dokan-dotnet
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 2.0.0.0
41+
PROJECT_NUMBER = 2.0.1.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ environment:
55
DOKAN_CI_CACHE: C:\dokan_ci_cache
66
DOXYGEN_INST_DIR: '%DOKAN_CI_CACHE%\doxygen'
77

8-
version: 2.0.0-{build}
8+
version: 2.0.1-{build}
99
configuration:
1010
- Release
1111
- Debug

0 commit comments

Comments
 (0)