Skip to content

Commit

Permalink
Release 6.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
moh-hassan committed Sep 9, 2023
1 parent 110e0da commit 924c8b0
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 18 deletions.
8 changes: 4 additions & 4 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@
<PackageVersion Include="DynamicExpresso.Core" Version="2.16.1" />
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" />
<PackageVersion Include="Microsoft.Data.Edm" Version="5.8.5" />
<PackageVersion Include="Microsoft.OData.Edm" Version="7.17.0" />
<PackageVersion Include="Microsoft.OData.Edm" Version="7.18.0" />
<PackageVersion Include="CommandLineParser" Version="2.9.1" />
<PackageVersion Include="ilmerge" Version="3.0.41" />
<PackageVersion Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" />
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="1.1.1" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.6.2" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageVersion Include="nunit" Version="3.13.3" />
<PackageVersion Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageVersion Include="NUnit.Analyzers" Version="3.5.0" />
<PackageVersion Include="FluentAssertions" Version="6.11.0" />
<PackageVersion Include="FluentAssertions" Version="6.12.0" />
<PackageVersion Include="NSubstitute" Version="5.0.0" />
<PackageVersion Include="CliWrap" Version="3.6.4" />
<PackageVersion Include="coverlet.collector" Version="3.2.0" />
<PackageVersion Include="WireMock.Net" Version="1.5.29" />
<PackageVersion Include="WireMock.Net" Version="1.5.35" />
</ItemGroup>
</Project>
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ POCO classes can be used in a typed RESTful client OData services. Code generati
|Branch |Build status |
|----------|---------------|
|Master |[![Build status](https://ci.appveyor.com/api/projects/status/sjaqqu70ex31n8se?svg=true)](https://ci.appveyor.com/project/moh-hassan/odata2poco/branch/master)|
|Develop |[![Build status](https://ci.appveyor.com/api/projects/status/sjaqqu70ex31n8se?svg=true)](https://ci.appveyor.com/project/moh-hassan/odata2poco/branch/develop)|


-----------

# Announcing new Release: V6.0.0
# Announcing new Release: V6.1.0
## What’s New in v6.1.0:
- New Feature: Gzip encoded content [#48](https://github.com/moh-hassan/odata2poco/issues/48) by @DerekGn. Allow reading SAP metadata compressed as gzip.

## What’s New in v6.0.0:

Expand Down
4 changes: 4 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# OData2Poco

## Version 6.1.0
**Release Date:** SEP 9, 2023
- New Feature: Gzip encoded content #48 by @DerekGn. Allow reading SAP metadata compressed as gzip.

## Version 6.0.0
**Release Date:** June 27, 2023

Expand Down
35 changes: 24 additions & 11 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,23 +77,34 @@ artifacts:
name: sha256

deploy:
- provider: GitHub
auth_token:
secure: sB33uLo96nR+LGmYLdPmY/segb6d4O061N2e8Nbz6iyHg82D0RysMxWE5JKnXmU+
artifact: /.*(\.|\.s)nupkg|o2p_exe|sha256/
prerelease: false
on:
APPVEYOR_REPO_TAG: true

# nuget
#chocolatey
- provider: NuGet
server: https://push.chocolatey.org
api_key:
secure: CUR2VQy2d8EeiFJ//LEcn7BJrbXjVhuAi4Te/7Vtn3kpzA2LSHInh21H3Z38H57Q
on:
APPVEYOR_REPO_TAG: true # Deploy on tag push only.
# branch: master # Release from master branch only.
artifact: choco_pkg

# Nuget
- provider: NuGet
api_key:
secure: XBvbm69UE+d1cuM8+VBfwMyjHDcAa79w0TBygcZsPZcl88AaLKN1EvI7KI8/K9Am
on:
APPVEYOR_REPO_TAG: true # Deploy on tag push only.
branch: master # Release from master branch only.
# branch: master # Release from master branch only.
artifact: global_tool,o2pgen,lib,symbol
on_failure: Continue

#Github
- provider: GitHub
auth_token:
secure: sB33uLo96nR+LGmYLdPmY/segb6d4O061N2e8Nbz6iyHg82D0RysMxWE5JKnXmU+
artifact: /.*(\.|\.s)nupkg|o2p_exe|sha256/
prerelease: false
on:
APPVEYOR_REPO_TAG: true

# myget
- provider: NuGet
Expand All @@ -104,4 +115,6 @@ deploy:
on:
branch: develop
artifact: global_tool,o2pgen,lib,symbol,choco_pkg
on_failure: Continue



0 comments on commit 924c8b0

Please sign in to comment.