Skip to content

Commit

Permalink
Version 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Rickedb committed Jun 6, 2022
1 parent 6b3730a commit 2c1bc75
Show file tree
Hide file tree
Showing 4 changed files with 90 additions and 41 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ jobs:
- name: Publish NuGet
run: |
dotnet build src/OpenProtocolInterpreter/OpenProtocolInterpreter.csproj --configuration release
nuget push src/OpenProtocolInterpreter/bin/release/OpenProtocolInterpreter.4.2.0.nupkg -Source https://api.nuget.org/v3/index.json -SkipDuplicate
nuget push src/OpenProtocolInterpreter/bin/release/OpenProtocolInterpreter.5.0.0.nupkg -Source https://api.nuget.org/v3/index.json -SkipDuplicate
Binary file modified dist/lib/netstandard2.0/OpenProtocolInterpreter.dll
Binary file not shown.
113 changes: 82 additions & 31 deletions dist/lib/netstandard2.0/OpenProtocolInterpreter.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 7 additions & 9 deletions src/OpenProtocolInterpreter/OpenProtocolInterpreter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<AssemblyVersion>4.2.0.0</AssemblyVersion>
<FileVersion>4.2.0.0</FileVersion>
<Version>4.2.0</Version>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<FileVersion>5.0.0.0</FileVersion>
<Version>5.0.0</Version>
<Description>Converts the ugly package that came from Open Protocol to an object</Description>
<Copyright>Copyright © 2022</Copyright>
<Authors>Henrique Dal Bello Batista</Authors>
Expand All @@ -14,13 +14,11 @@
<RepositoryUrl>https://github.com/Rickedb/OpenProtocolInterpreter</RepositoryUrl>
<PackageTags>CSharp Open Protocol Atlas Copco</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReleaseNotes>New Mids:
<PackageReleaseNotes>Breaking changes:

- Mid0066

Bug fixes:

- Mid0052 adding NUL character as part of VinNumber</PackageReleaseNotes>
- Header property name changed in Mids from HeaderData to Header
- Header is now fully mapped and not set as "UsedAs" as before
- Revisions which are empty or zeroed, are converted to rev 1. (this is only applied when parsing, not when packing)</PackageReleaseNotes>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>

Expand Down

0 comments on commit 2c1bc75

Please sign in to comment.