Skip to content

Commit

Permalink
Release v2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
chtenb committed Feb 9, 2024
1 parent 654b362 commit 845a6ce
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions How-to-release.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
- Upload to https://www.nuget.org/packages/manage/upload
- Make a cup of coffee
- Update the version of the referenced Nuget package in the NugetTest project to the package that was just uploaded and run the test.
- If the build and test succeeds we are ready to release. Commit the changes, and push this to github.
- Add a new version tag (git tag vx.y.z) and push this too (git push --tags)
- dotnet add Rubjerg.Graphviz.NugetTest\Rubjerg.Graphviz.NugetTest.csproj package Rubjerg.Graphviz
- If the build and test succeeds we are ready to release. Commit the changes, add the tag, and push this to github.
- git commit -am 'Release vx.y.z'
- git tag vx.y.z
- git push github --tags
- In GitHub, add a new release of the just pushed commit at https://github.com/Rubjerg/Graphviz.NetWrapper/releases.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<Version>4.7.1221</Version>
</PackageReference>
<PackageReference Include="Rubjerg.Graphviz">
<Version>2.0.1</Version>
<Version>2.0.2</Version>
</PackageReference>
<!--We need both packages below to run the tests in VS https://github.com/microsoft/vstest/issues/1870-->
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.0" />
Expand Down
2 changes: 1 addition & 1 deletion Rubjerg.Graphviz/Rubjerg.Graphviz.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<NoWarn>1701;1702;NU5100</NoWarn>
<Version>2.0.1</Version>
<Version>2.0.2</Version>
<Authors>Chiel ten Brinke</Authors>
<Company>Rubjerg</Company>
<Description>Lean wrapper around Graphviz for building graphs, reading/writing dot files, exporting images, or reading out layout parameters.</Description>
Expand Down

0 comments on commit 845a6ce

Please sign in to comment.