bump version to 0.16 and update Changelog

This commit is contained in:
Bill Zissimopoulos 2016-09-09 21:45:19 -07:00
parent 165f3ec45d
commit f32e335855
2 changed files with 10 additions and 1 deletions

View File

@ -7,7 +7,7 @@
<MyCopyright>2015-2016 Bill Zissimopoulos</MyCopyright> <MyCopyright>2015-2016 Bill Zissimopoulos</MyCopyright>
<!-- build number: concat 2-digit year with 3-digit day of the year (16-bits until 2066) --> <!-- build number: concat 2-digit year with 3-digit day of the year (16-bits until 2066) -->
<MyBuildNumber>$([System.DateTime]::Now.ToString(`yy`))$([System.DateTime]::Now.DayOfYear.ToString(`000`))</MyBuildNumber> <MyBuildNumber>$([System.DateTime]::Now.ToString(`yy`))$([System.DateTime]::Now.DayOfYear.ToString(`000`))</MyBuildNumber>
<MyVersion>0.15.$(MyBuildNumber)</MyVersion> <MyVersion>0.16.$(MyBuildNumber)</MyVersion>
<MyVersionWithCommas>$(MyVersion.Replace('.',',')),0</MyVersionWithCommas> <MyVersionWithCommas>$(MyVersion.Replace('.',',')),0</MyVersionWithCommas>
</PropertyGroup> </PropertyGroup>
<ItemDefinitionGroup> <ItemDefinitionGroup>

View File

@ -1,6 +1,15 @@
= Changelog = Changelog
v0.16::
This release brings support for reparse points and symbolic links.
- Reparse points are a general mechanism for attaching special behavior to files. WinFsp supports any kind of reparse point.
- Symbolic links in Windows are implemented as reparse points. WinFsp includes full symbolic link support.
- The WinFsp FUSE implementation also supports symbolic links. It also supports POSIX special files (FIFO, SOCK, CHR, BLK) as NFS reparse points (see https://msdn.microsoft.com/en-us/library/dn617178.aspx).
v0.15:: v0.15::
This is a minor release that brings support for Windows 7 and 32-bit OS'es. This is a minor release that brings support for Windows 7 and 32-bit OS'es.