Skip to content

Commit

Permalink
Version 0.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
XiaoFaye committed Mar 17, 2021
1 parent 04a1374 commit 0c81c1e
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 9 deletions.
9 changes: 9 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ Version History
* v0.8.3 update
1. Fix error while creating a refund. #476
2. Allow authenticate Woocommerce API with JWT (set WCAuthWithJWT to true). #478
3. Fix error on retrieving refund. #484
4. Fix error on deserialize BatchObject. #523
5. Fix error on date format. #524
6. Add user-friendly attribute names and values to Metadata. #558
7. Change all id field to unsigned 32bit integer to prevent overflow. #560
8. Change functions in BaseObject to virtual to support Unit Test. #568
9. Add function to delete tax class by slug. #576
10. Allow WC Plugins to use WCObject.
11. Add UpdateRangeRaw to ignore deserialize return json. #523
* v0.8.2 update
1. Fix UpdateWithNull is not working correctly. #449
2. Fix Product Review 404 issue in WooCommerce API V3. #444
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-2020 James Yang
Copyright (c) 2015-2021 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
25 changes: 17 additions & 8 deletions WooCommerce.NET.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,38 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>WooCommerceNET</PackageId>
<Version>0.8.2</Version>
<Version>0.8.3</Version>
<Authors>JamesYang@NZ</Authors>
<Company>JamesYang@NZ</Company>
<Description>A .NET Wrapper for WooCommerce/WordPress REST API</Description>
<Copyright>Copyright © 2015 - 2020 James Yang@NZ</Copyright>
<Copyright>Copyright © 2015 - 2021 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.2 update
1. Fix UpdateWithNull is not working correctly. #449
2. Fix Product Review 404 issue in WooCommerce API V3. #444
3. Missing property in OrderShippingLine (instance_id). #441</PackageReleaseNotes>
* v0.8.3 update
1. Fix error while creating a refund. #476
2. Allow authenticate Woocommerce API with JWT (set WCAuthWithJWT to true). #478
3. Fix error on retrieving refund. #484
4. Fix error on deserialize BatchObject. #523
5. Fix error on date format. #524
6. Add user-friendly attribute names and values to Metadata. #558
7. Change all id field to unsigned 32bit integer to prevent overflow. #560
8. Change functions in BaseObject to virtual to support Unit Test. #568
9. Add function to delete tax class by slug. #576
10. Allow WC Plugins to use WCObject.
11. Add UpdateRangeRaw to ignore deserialize return json. #523</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyVersion>0.8.2.0</AssemblyVersion>
<AssemblyVersion>0.8.3.0</AssemblyVersion>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>sn.key.snk</AssemblyOriginatorKeyFile>
<PackageLicenseFile>License.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<FileVersion>0.8.2.0</FileVersion>
<FileVersion>0.8.3.0</FileVersion>
<PackageTags>WooCommerce Wordpress Restful API</PackageTags>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 0c81c1e

Please sign in to comment.