Skip to content

Commit 0b5e71f

Browse files
committed
Add Package manifest
1 parent d4555ee commit 0b5e71f

File tree

5 files changed

+44
-5
lines changed

5 files changed

+44
-5
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [2.6.1] - 2020-06-10
10+
11+
### Fixed
12+
- Only retry when there is a network error by [@aang521](https://github.com/aang521) ([e8b6706](https://github.com/proyecto26/RestClient/commit/e8b670615c60f3925c75589c98717ec156bb64ab)).
13+
- Fix new obsoletion warning in unity 2019.3 by [@extrawurst](https://github.com/extrawurst) ([6b8e92d](https://github.com/proyecto26/RestClient/commit/6b8e92df571119372400f768452148f2d59e71ee)).
14+
915
## [2.6.0] - 2019-09-19
1016

1117
### Added
@@ -136,7 +142,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
136142
## [...1.0.1]
137143
Missing tags for previous versions 🤷‍♂
138144

139-
[Unreleased]: https://github.com/proyecto26/RestClient/compare/v2.6.0...HEAD
145+
[Unreleased]: https://github.com/proyecto26/RestClient/compare/v2.6.1...HEAD
146+
[2.6.1]: https://github.com/proyecto26/RestClient/compare/v2.6.0...v2.6.1
140147
[2.6.0]: https://github.com/proyecto26/RestClient/compare/v2.5.9...v2.6.0
141148
[2.5.9]: https://github.com/proyecto26/RestClient/compare/2.5.7...v2.5.9
142149
[2.5.7]: https://github.com/proyecto26/RestClient/compare/2.5.5...2.5.7

src/Proyecto26.RestClient/Properties/AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
1818
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
1919

20-
[assembly: AssemblyVersion ("2.6.0")]
20+
[assembly: AssemblyVersion ("2.6.1")]
2121

2222
// The following attributes are used to specify the signing key for the assembly,
2323
// if desired. See the Mono documentation for more information about signing.

src/Proyecto26.RestClient/Proyecto26.RestClient.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata>
44
<id>Proyecto26.RestClient</id>
5-
<version>2.6.0</version>
5+
<version>2.6.1</version>
66
<title>RestClient for Unity</title>
77
<authors>Juan David Nicholls Cardona</authors>
88
<owners>jdnichollsc</owners>
@@ -13,7 +13,7 @@
1313
<description>Simple HTTP and REST client for Unity based on Promises, also support Callbacks!</description>
1414
<releaseNotes>Add ParseResponseBody option to fix severe frame rate drop when parsing large response</releaseNotes>
1515
<copyright>Copyright ©2019 Proyecto 26</copyright>
16-
<tags>Unity Promises Http Rest http-client HttpClient rest-client RestClient Request</tags>
16+
<tags>Unity Promises Http Rest http-client HttpClient rest-client RestClient Request API Requests APIs JSON Networking</tags>
1717
<dependencies>
1818
<dependency id="RSG.Promise" version="3.0.1" />
1919
</dependencies>

src/Proyecto26.RestClient/RestClient.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Proyecto26
99
{
1010
/// <summary>
1111
/// RestClient for Unity
12-
/// Version: 2.6.0
12+
/// Version: 2.6.1
1313
/// </summary>
1414
public static partial class RestClient
1515
{
+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "com.proyecto26.restclient",
3+
"version": "2.6.1",
4+
"displayName": "RestClient for Unity",
5+
"description": "Simple HTTP and REST client for Unity based on Promises, also support Callbacks!",
6+
"unity": "2017.1",
7+
"unityRelease": "5",
8+
"dependencies": {
9+
"com.rsg.promise": "3.0.1"
10+
},
11+
"keywords": [
12+
"Promises",
13+
"Http",
14+
"Rest",
15+
"http-client",
16+
"HttpClient",
17+
"rest-client",
18+
"RestClient",
19+
"Request",
20+
"API",
21+
"Requests",
22+
"APIs",
23+
"JSON",
24+
"Networking",
25+
"message"
26+
],
27+
"author": {
28+
"name": "Proyecto 26",
29+
"email": "[email protected]",
30+
"url": "https://github.com/proyecto26/RestClient"
31+
}
32+
}

0 commit comments

Comments
 (0)