Skip to content

Commit

Permalink
Add Package manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
jdnichollsc committed Jun 10, 2020
1 parent d4555ee commit 0b5e71f
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/Proyecto26.RestClient/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions src/Proyecto26.RestClient/Proyecto26.RestClient.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Proyecto26.RestClient</id>
<version>2.6.0</version>
<version>2.6.1</version>
<title>RestClient for Unity</title>
<authors>Juan David Nicholls Cardona</authors>
<owners>jdnichollsc</owners>
Expand All @@ -13,7 +13,7 @@
<description>Simple HTTP and REST client for Unity based on Promises, also support Callbacks!</description>
<releaseNotes>Add ParseResponseBody option to fix severe frame rate drop when parsing large response</releaseNotes>
<copyright>Copyright ©2019 Proyecto 26</copyright>
<tags>Unity Promises Http Rest http-client HttpClient rest-client RestClient Request</tags>
<tags>Unity Promises Http Rest http-client HttpClient rest-client RestClient Request API Requests APIs JSON Networking</tags>
<dependencies>
<dependency id="RSG.Promise" version="3.0.1" />
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion src/Proyecto26.RestClient/RestClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Proyecto26
{
/// <summary>
/// RestClient for Unity
/// Version: 2.6.0
/// Version: 2.6.1
/// </summary>
public static partial class RestClient
{
Expand Down
32 changes: 32 additions & 0 deletions src/Proyecto26.RestClient/package.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]",
"url": "https://github.com/proyecto26/RestClient"
}
}

0 comments on commit 0b5e71f

Please sign in to comment.