From 0b5e71fb4ee1943fc015953aba806fb58a6fa727 Mon Sep 17 00:00:00 2001 From: Juan David Nicholls Cardona Date: Wed, 10 Jun 2020 09:15:11 -0500 Subject: [PATCH] Add Package manifest --- CHANGELOG.md | 9 +++++- .../Properties/AssemblyInfo.cs | 2 +- .../Proyecto26.RestClient.nuspec | 4 +-- src/Proyecto26.RestClient/RestClient.cs | 2 +- src/Proyecto26.RestClient/package.json | 32 +++++++++++++++++++ 5 files changed, 44 insertions(+), 5 deletions(-) create mode 100644 src/Proyecto26.RestClient/package.json diff --git a/CHANGELOG.md b/CHANGELOG.md index fec361e..106f3b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.6.1] - 2020-06-10 + +### Fixed +- Only retry when there is a network error by [@aang521](https://github.com/aang521) ([e8b6706](https://github.com/proyecto26/RestClient/commit/e8b670615c60f3925c75589c98717ec156bb64ab)). +- Fix new obsoletion warning in unity 2019.3 by [@extrawurst](https://github.com/extrawurst) ([6b8e92d](https://github.com/proyecto26/RestClient/commit/6b8e92df571119372400f768452148f2d59e71ee)). + ## [2.6.0] - 2019-09-19 ### Added @@ -136,7 +142,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [...1.0.1] Missing tags for previous versions 🤷‍♂ -[Unreleased]: https://github.com/proyecto26/RestClient/compare/v2.6.0...HEAD +[Unreleased]: https://github.com/proyecto26/RestClient/compare/v2.6.1...HEAD +[2.6.1]: https://github.com/proyecto26/RestClient/compare/v2.6.0...v2.6.1 [2.6.0]: https://github.com/proyecto26/RestClient/compare/v2.5.9...v2.6.0 [2.5.9]: https://github.com/proyecto26/RestClient/compare/2.5.7...v2.5.9 [2.5.7]: https://github.com/proyecto26/RestClient/compare/2.5.5...2.5.7 diff --git a/src/Proyecto26.RestClient/Properties/AssemblyInfo.cs b/src/Proyecto26.RestClient/Properties/AssemblyInfo.cs index 1311bba..f687ba2 100644 --- a/src/Proyecto26.RestClient/Properties/AssemblyInfo.cs +++ b/src/Proyecto26.RestClient/Properties/AssemblyInfo.cs @@ -17,7 +17,7 @@ // The form "{Major}.{Minor}.*" will automatically update the build and revision, // and "{Major}.{Minor}.{Build}.*" will update just the revision. -[assembly: AssemblyVersion ("2.6.0")] +[assembly: AssemblyVersion ("2.6.1")] // The following attributes are used to specify the signing key for the assembly, // if desired. See the Mono documentation for more information about signing. diff --git a/src/Proyecto26.RestClient/Proyecto26.RestClient.nuspec b/src/Proyecto26.RestClient/Proyecto26.RestClient.nuspec index 833ea29..8cc262d 100644 --- a/src/Proyecto26.RestClient/Proyecto26.RestClient.nuspec +++ b/src/Proyecto26.RestClient/Proyecto26.RestClient.nuspec @@ -2,7 +2,7 @@ Proyecto26.RestClient - 2.6.0 + 2.6.1 RestClient for Unity Juan David Nicholls Cardona jdnichollsc @@ -13,7 +13,7 @@ Simple HTTP and REST client for Unity based on Promises, also support Callbacks! Add ParseResponseBody option to fix severe frame rate drop when parsing large response Copyright ©2019 Proyecto 26 - Unity Promises Http Rest http-client HttpClient rest-client RestClient Request + Unity Promises Http Rest http-client HttpClient rest-client RestClient Request API Requests APIs JSON Networking diff --git a/src/Proyecto26.RestClient/RestClient.cs b/src/Proyecto26.RestClient/RestClient.cs index 21aa7bb..b0d1573 100644 --- a/src/Proyecto26.RestClient/RestClient.cs +++ b/src/Proyecto26.RestClient/RestClient.cs @@ -9,7 +9,7 @@ namespace Proyecto26 { /// /// RestClient for Unity - /// Version: 2.6.0 + /// Version: 2.6.1 /// public static partial class RestClient { diff --git a/src/Proyecto26.RestClient/package.json b/src/Proyecto26.RestClient/package.json new file mode 100644 index 0000000..48afb48 --- /dev/null +++ b/src/Proyecto26.RestClient/package.json @@ -0,0 +1,32 @@ +{ + "name": "com.proyecto26.restclient", + "version": "2.6.1", + "displayName": "RestClient for Unity", + "description": "Simple HTTP and REST client for Unity based on Promises, also support Callbacks!", + "unity": "2017.1", + "unityRelease": "5", + "dependencies": { + "com.rsg.promise": "3.0.1" + }, + "keywords": [ + "Promises", + "Http", + "Rest", + "http-client", + "HttpClient", + "rest-client", + "RestClient", + "Request", + "API", + "Requests", + "APIs", + "JSON", + "Networking", + "message" + ], + "author": { + "name": "Proyecto 26", + "email": "jdnichollsc@hotmail.com", + "url": "https://github.com/proyecto26/RestClient" + } +} \ No newline at end of file