Skip to content

Commit f67b6e8

Browse files
committedMay 30, 2021
Release 1.5.0.0
1 parent 80b356a commit f67b6e8

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed
 

‎CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88

9+
## [1.5.0.0] - 2021-05-30
10+
### Added
11+
- Add `ILogger.DebugEnabled` to reduce memory allocation produce by logs like `BufferPool`.
12+
913
## [1.4.0.0] - 2020-06-02
1014
### Added
1115
- Replace `DokanOptions` of dokany 1.4.0 `OptimizeSingleNameSearch` to `EnableFCBGC`.
@@ -156,7 +160,8 @@ See the [release note](http://web.archive.org/web/20150416102451/http://dokan-de
156160
- ``DokanOptions.Version``, ``DokanOptions.RemovableDrive`` and ``DokanOptions.MountPoint``
157161
- ``DokanRemoveMountPoint``
158162

159-
[Unreleased]: https://github.com/dokan-dev/dokan-dotnet/compare/v1.4.0.0...HEAD
163+
[Unreleased]: https://github.com/dokan-dev/dokan-dotnet/compare/v1.5.0.0...HEAD
164+
[1.4.0.0]: https://github.com/dokan-dev/dokan-dotnet/compare/v1.4.0.0...v1.5.0.0
160165
[1.4.0.0]: https://github.com/dokan-dev/dokan-dotnet/compare/v1.3.0.0...v1.4.0.0
161166
[1.3.0.0]: https://github.com/dokan-dev/dokan-dotnet/compare/v1.1.2.1...v1.3.0.0
162167
[1.1.2.1]: https://github.com/dokan-dev/dokan-dotnet/compare/v1.1.2.0...v1.1.2.1

‎DokanNet/DokanNet.csproj

+3-3
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) 2017</Copyright>
11-
<Version>1.4.0.0</Version>
12-
<AssemblyVersion>1.4.0.0</AssemblyVersion>
13-
<FileVersion>1.4.0.0</FileVersion>
11+
<Version>1.5.0.0</Version>
12+
<AssemblyVersion>1.5.0.0</AssemblyVersion>
13+
<FileVersion>1.5.0.0</FileVersion>
1414
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1515
<Company>Dokan-dev</Company>
1616
<Authors>AdrienJ, MaximeC, Hiroki Asakawa</Authors>

‎DokanNet/documentations/Doxyfile

+1-1
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 = 1.4.0.0
41+
PROJECT_NUMBER = 1.5.0.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

0 commit comments

Comments
 (0)
Please sign in to comment.