Skip to content
This repository has been archived by the owner on Feb 14, 2022. It is now read-only.

Commit

Permalink
Version number; changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
DecaTec committed Apr 13, 2017
1 parent d3b35f2 commit 897ab1e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
5 changes: 4 additions & 1 deletion DecaTec.WebDav.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26403.0
VisualStudioVersion = 15.0.26403.3
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Assets", "Assets", "{7E4D0EB6-A947-40C5-8475-34AFC1F85798}"
ProjectSection(SolutionItems) = preProject
Expand All @@ -17,6 +17,9 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Documentation", "Documentation", "{74568DD0-6575-4C81-9FCA-DADE3CE2787F}"
EndProject
Project("{7CF6DF6D-3B04-46F8-A40B-537D21BCA0B4}") = "DecaTec.WebDav.Documentation", "Documentation\DecaTec.WebDav.Documentation\DecaTec.WebDav.Documentation.shfbproj", "{A26B15E7-0283-4372-86ED-57FF2FA31E05}"
ProjectSection(ProjectDependencies) = postProject
{D88C2DAD-5227-4015-944C-775CA1309BBA} = {D88C2DAD-5227-4015-944C-775CA1309BBA}
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DecaTec.WebDav.UnitIntegrationTest", "UnitTests\DecaTec.WebDav.UnitIntegrationTest\DecaTec.WebDav.UnitIntegrationTest.csproj", "{21356EDE-B4BE-489F-B455-C2CB18951FAB}"
EndProject
Expand Down
2 changes: 1 addition & 1 deletion DecaTec.WebDav/DecaTec.WebDav.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard1.1</TargetFramework>
<PackageId>PortableWebDavLibrary</PackageId>
<Version>0.8.0.0-beta1</Version>
<Version>0.8.0.0</Version>
<Authors>DecaTec</Authors>
<Company>DecaTec</Company>
<Product>PortableWebDavLibrary</Product>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<listItem>
<para>
When using the Portable WebDAV Library on Xamarin, there was a problem when relative URLs (strings) where used (e.g. webDavSession.ListAsync(@"/folder");)
When using the Portable WebDAV Library on Xamarin, there was a problem when relative URLs (strings) where used (e.g. webDavSession.ListAsync(@"/folder")).
</para>
</listItem>

Expand All @@ -37,7 +37,7 @@

<listItem>
<para>
The 'Translate' header is always set to 'f' for IIS WebDAV serving unmapped file types (see <externalLink><linkText>MSDN</linkText><linkUri>https://msdn.microsoft.com/en-us/library/cc250063.aspx</linkUri>)</externalLink>.
The 'Translate' header is always set to 'f' for IIS WebDAV serving unmapped file types (see <externalLink><linkText>MSDN</linkText><linkUri>https://msdn.microsoft.com/en-us/library/cc250063.aspx</linkUri></externalLink>).
</para>
</listItem>

Expand All @@ -49,7 +49,7 @@

<listItem>
<para>
Bugfix: When using WebDavSession.UploadFileWithProgressAsync with a URL, there was a stack overflow exception because the method called itself and not the correct overload.
Bugfix: When using WebDavSession.UploadFileWithProgressAsync with a URL, there was a stack overflow exception because the method called itself instead of the correct overload.
</para>
</listItem>

Expand Down
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
v0.8.0.0
- When using WebDavClient.DownloadFileWithProgressAsync, the passed Stream does not get disposed automatically. Disposing of this Stream is up to the client calling this method.
- Strongly typed versions of Lock-Token formats as defined in WebDAV specification.
- When using the Portable WebDAV Library on Xamarin, there was a problem when relative URLs (strings) where used (e.g. webDavSession.ListAsync(@"/folder")).
- When using WebDavSession, a base URL (string) can now be specified.
- The 'Translate' header is always set to 'f' for IIS WebDAV serving unmapped file types (see https://msdn.microsoft.com/en-us/library/cc250063.aspx).
- Bugfix: When using WebDavSession with BaseUri and calling methods passing only the relative Uri/URL to a file, these operations always failed.
- Bugfix: When using WebDavSession.UploadFileWithProgressAsync with a URL, there was a stack overflow exception because the method called itself instead of the correct overload.

v0.7.0.0
- The library now targets .NETStandard 1.1 (.NET Core) and can be used on any platform supporting .NETStandard 1.1.
- Due to .NETStandard support, the library is not separated into two parts (UWP/NetFx) anymore. One library for all the target platforms.
Expand Down

0 comments on commit 897ab1e

Please sign in to comment.