Skip to content

Commit

Permalink
Merge pull request #79 from jgiacomini/develop
Browse files Browse the repository at this point in the history
Bump 1.6.1
  • Loading branch information
jgiacomini authored Jan 21, 2019
2 parents 08e19de + 3acd6f5 commit 8e16d65
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ await postmanListener.SaveAsync(new FileInfo("postmanCollection.json");

If you only want the Json of collection you can call the method GetCollectionJson
```cs
await listener.GetCollectionJson();
listener.GetCollectionJson();
```

### Custom Listener
Expand Down
3 changes: 3 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Release notes
## 1.6.1
* Fix patch request which sent patch verb in lowercase

## 1.6.0
* Add support of Entity Tag (ETag)

Expand Down
6 changes: 3 additions & 3 deletions Tiny.RestClient/Tiny.RestClient.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard1.1;netstandard1.2;netstandard1.3;netstandard2.0;net45;net46;net47;</TargetFrameworks>
<Version>1.6.0</Version>
<Version>1.6.1</Version>
<Copyright>Copyright © Jérôme Giacomini 2018</Copyright>
<NeutralLanguage>en</NeutralLanguage>
<Title>Tiny.RestClient</Title>
Expand Down Expand Up @@ -36,7 +36,7 @@
<RepositoryUrl>https://github.com/jgiacomini/Tiny.RestClient.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<MinClientVersion>3.0.3</MinClientVersion>
<PackageReleaseNotes>See release notes at https://github.com/jgiacomini/Tiny.RestClient/blob/1.6.0/RELEASE-NOTES.md</PackageReleaseNotes>
<PackageReleaseNotes>See release notes at https://github.com/jgiacomini/Tiny.RestClient/blob/1.6.1/RELEASE-NOTES.md</PackageReleaseNotes>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
Expand All @@ -51,7 +51,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63127-02" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-18618-05" PrivateAssets="All" />
<PackageReference Include="Microsoft.DotNet.Analyzers.Compatibility" Version="0.2.12-alpha" PrivateAssets="All" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion Tiny.RestClient/TinyRestClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class TinyRestClient
{
#region Fields
private const int BufferSize = 81920;
private static readonly HttpMethod _PatchMethod = new HttpMethod("Patch");
private static readonly HttpMethod _PatchMethod = new HttpMethod("PATCH");
private readonly HttpClient _httpClient;
private readonly string _serverAddress;
#endregion
Expand Down

0 comments on commit 8e16d65

Please sign in to comment.