diff --git a/CHANGELOG.md b/CHANGELOG.md
index 30eac0608..03e7e5154 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
-## [Unreleased]
+## [1.3.0.1000] - 2019-07-24
### Added
- Mirror - Use `GetDiskFreeSpace` during `MirrorDokanGetDiskFreeSpace`.
- Kernel - Add most important log msg to Event Viewer.
diff --git a/Dokan.props b/Dokan.props
index f74d03e1f..b4f76a6fe 100644
--- a/Dokan.props
+++ b/Dokan.props
@@ -3,7 +3,7 @@
1
- 1.2.2
+ 1.3.0
diff --git a/appveyor.yml b/appveyor.yml
index 8ea191abd..01eb410c0 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -18,7 +18,7 @@
WLK_INST_CACHE: '%DOKAN_CI_CACHE%\wlk_inst'
DOKAN_MAIN_BUILD_JOB_NAME: "Image: Visual Studio 2019; Configuration: All"
- version: 1.2.2-{build}
+ version: 1.3.0-{build}
configuration:
- All
#- Coverity
diff --git a/documentations/Doxyfile b/documentations/Doxyfile
index 4b43b7c99..cb27c268d 100644
--- a/documentations/Doxyfile
+++ b/documentations/Doxyfile
@@ -38,7 +38,7 @@ PROJECT_NAME = Dokan
# could be handy for archiving the generated documentation or if some version
# control system is used.
-PROJECT_NUMBER = 1.2.2
+PROJECT_NUMBER = 1.3.0
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
diff --git a/dokan/dokan.h b/dokan/dokan.h
index 580b9b19e..cac77dfc4 100644
--- a/dokan/dokan.h
+++ b/dokan/dokan.h
@@ -56,7 +56,7 @@ extern "C" {
/** @{ */
/** The current Dokan version (ver 1.2.0). \ref DOKAN_OPTIONS.Version */
-#define DOKAN_VERSION 122
+#define DOKAN_VERSION 130
/** Minimum Dokan version (ver 1.1.0) accepted. */
#define DOKAN_MINIMUM_COMPATIBLE_VERSION 110
/** Driver file name including the DOKAN_MAJOR_API_VERSION */
diff --git a/dokan/dokan.rc b/dokan/dokan.rc
index 4e5611207..6783721e5 100644
--- a/dokan/dokan.rc
+++ b/dokan/dokan.rc
@@ -16,8 +16,8 @@
//
VS_VERSION_INFO VERSIONINFO
- FILEVERSION 1,2,2,1000
- PRODUCTVERSION 1,2,2,1000
+ FILEVERSION 1,3,0,1000
+ PRODUCTVERSION 1,3,0,1000
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@@ -34,12 +34,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Dokan Project"
VALUE "FileDescription", "Dokan Library"
- VALUE "FileVersion", "1.2.2.1000"
+ VALUE "FileVersion", "1.3.0.1000"
VALUE "InternalName", "dokan.dll"
VALUE "LegalCopyright", "Copyright (C) 2018"
VALUE "OriginalFilename", "dokan.dll"
VALUE "ProductName", "Dokan"
- VALUE "ProductVersion", "1.2.2.1000"
+ VALUE "ProductVersion", "1.3.0.1000"
END
END
BLOCK "VarFileInfo"
diff --git a/dokan_fuse/src/dokanfuse.rc b/dokan_fuse/src/dokanfuse.rc
index 3648bdeab..d50a814eb 100644
--- a/dokan_fuse/src/dokanfuse.rc
+++ b/dokan_fuse/src/dokanfuse.rc
@@ -16,8 +16,8 @@
//
VS_VERSION_INFO VERSIONINFO
- FILEVERSION 1,2,2,1000
- PRODUCTVERSION 1,2,2,1000
+ FILEVERSION 1,3,0,1000
+ PRODUCTVERSION 1,3,0,1000
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@@ -34,12 +34,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Dokan Project"
VALUE "FileDescription", "Dokan Fuse library"
- VALUE "FileVersion", "1.2.2.1000"
+ VALUE "FileVersion", "1.3.0.1000"
VALUE "InternalName", "dokanfuse.dll"
VALUE "LegalCopyright", "Copyright (C) 2018"
VALUE "OriginalFilename", "dokanfuse.dll"
VALUE "ProductName", "Dokan"
- VALUE "ProductVersion", "1.2.2.1000"
+ VALUE "ProductVersion", "1.3.0.1000"
END
END
BLOCK "VarFileInfo"
diff --git a/dokan_np/dokan_np.rc b/dokan_np/dokan_np.rc
index 75d67c2d4..d8d164546 100644
--- a/dokan_np/dokan_np.rc
+++ b/dokan_np/dokan_np.rc
@@ -16,8 +16,8 @@
//
VS_VERSION_INFO VERSIONINFO
- FILEVERSION 1,2,2,1000
- PRODUCTVERSION 1,2,2,1000
+ FILEVERSION 1,3,0,1000
+ PRODUCTVERSION 1,3,0,1000
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@@ -34,12 +34,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Dokan Project"
VALUE "FileDescription", "Dokan Network Provider"
- VALUE "FileVersion", "1.2.2.1000"
+ VALUE "FileVersion", "1.3.0.1000"
VALUE "InternalName", "dokan.dll"
VALUE "LegalCopyright", "Copyright (C) 2018"
VALUE "OriginalFilename", "dokannp.dll"
VALUE "ProductName", "Dokan"
- VALUE "ProductVersion", "1.2.2.1000"
+ VALUE "ProductVersion", "1.3.0.1000"
END
END
BLOCK "VarFileInfo"
diff --git a/dokan_wix/version.xml b/dokan_wix/version.xml
index 2bf1ff611..cd804458a 100644
--- a/dokan_wix/version.xml
+++ b/dokan_wix/version.xml
@@ -1,13 +1,13 @@
-
+
-
+
-
+
diff --git a/sys/dokan.rc b/sys/dokan.rc
index fde3e4811..26d54a6ab 100644
--- a/sys/dokan.rc
+++ b/sys/dokan.rc
@@ -16,8 +16,8 @@
//
VS_VERSION_INFO VERSIONINFO
- FILEVERSION 1,2,2,1000
- PRODUCTVERSION 1,2,2,1000
+ FILEVERSION 1,3,0,1000
+ PRODUCTVERSION 1,3,0,1000
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@@ -34,12 +34,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Dokan Project"
VALUE "FileDescription", "Dokan Driver"
- VALUE "FileVersion", "1.2.2.1000"
+ VALUE "FileVersion", "1.3.0.1000"
VALUE "InternalName", "dokan.sys"
VALUE "LegalCopyright", "Copyright (C) 2018"
VALUE "OriginalFilename", "dokan.sys"
VALUE "ProductName", "Dokan"
- VALUE "ProductVersion", "1.2.2.1000"
+ VALUE "ProductVersion", "1.3.0.1000"
END
END
BLOCK "VarFileInfo"