Skip to content

Commit

Permalink
Version 0.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
XiaoFaye committed Jan 4, 2023
1 parent ccb4f4e commit 2a59cd8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@

Version History
-------------------
* v0.8.5 update
1. Change all id field to 64bit integer (unsigned long) to prevent overflow. #560
2. Add WCCustomerItem for get customer by email endpoint.
3. Escape all querystrings.
* v0.8.4 update
1. Change all id field to 64bit integer (unsigned long) to prevent overflow. #560
2. Create RestClient.cs to use HttpClient, as Blazor does not support HttpWebRequest. PR#639
Expand Down
2 changes: 1 addition & 1 deletion License.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015-2021 James Yang
Copyright (c) 2015-2023 James Yang

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
22 changes: 11 additions & 11 deletions WooCommerce.NET.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,36 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>WooCommerceNET</PackageId>
<Version>0.8.4</Version>
<Version>0.8.5</Version>
<Authors>JamesYang@NZ</Authors>
<Company>JamesYang@NZ</Company>
<Description>A .NET Wrapper for WooCommerce/WordPress REST API</Description>
<Copyright>Copyright © 2015 - 2021 James Yang@NZ</Copyright>
<Copyright>Copyright © 2015 - 2023 James Yang@NZ</Copyright>
<PackageLicenseUrl></PackageLicenseUrl>
<PackageProjectUrl>https://github.com/XiaoFaye/WooCommerce.NET</PackageProjectUrl>
<PackageReleaseNotes>WooCommerce.NET is a .NET library for calling WooCommerce/WordPress REST API in .NET applications.

GitHub: https://github.com/XiaoFaye/WooCommerce.NET
Changes Doc: https://github.com/XiaoFaye/WooCommerce.NET/blob/master/Changes.md

* v0.8.4 update
* v0.8.5 update
1. Change all id field to 64bit integer (unsigned long) to prevent overflow. #560
2. Create RestClient.cs to use HttpClient, as Blazor does not support HttpWebRequest. PR#639
3. Accept '&amp;' in password while calling WordPress Restful API. PR#527
4. Close HttpWebRequest write stream when finish. PR#529
5. Add WCObject.MetaDisplayValueProcessor function. PR#600
6. Add OrderCouponLineMeta class. PR#600
7. Change MetaData.display_value field to type object and run it through MetaDisplayValueProcessor() if configured. PR#600</PackageReleaseNotes>
2. Add WCCustomerItem for get customer by email endpoint.
3. Escape all querystrings.</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyVersion>0.8.4.0</AssemblyVersion>
<AssemblyVersion>0.8.5.0</AssemblyVersion>
<SignAssembly>false</SignAssembly>
<AssemblyOriginatorKeyFile>sn.key.snk</AssemblyOriginatorKeyFile>
<PackageLicenseFile>License.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<FileVersion>0.8.4.0</FileVersion>
<FileVersion>0.8.5.0</FileVersion>
<PackageTags>WooCommerce Wordpress Restful API</PackageTags>
</PropertyGroup>

<ItemGroup>
<Compile Remove="RestClient.cs" />
</ItemGroup>

<ItemGroup>
<None Include="License.md">
<Pack>True</Pack>
Expand Down

0 comments on commit 2a59cd8

Please sign in to comment.