chore(release): prepare 2.0.0.0 and support pre-release tags

Bump AssemblyInfo to 2.0.0.0 and add the 2.0.0.0 changelog section.
Resolve a tag suffix (2.0.0.0-rc.1) to its base version so release metadata
validation and changelog extraction accept pre-release tags.
Publish suffixed tags as a pre-release and keep them off "Latest release".
This commit is contained in:
kitbyte
2026-08-29 17:08:27 +03:00
parent 43e898c66c
commit 8b83750bf2
5 changed files with 66 additions and 8 deletions
+4
View File
@@ -50,3 +50,7 @@ jobs:
body_path: release-notes.md
files: CHANGELOG.md
fail_on_unmatched_files: true
# A tag carrying a suffix (1.1.0.0-rc.1) publishes as a pre-release and
# does not become the "Latest release" on the repository page.
prerelease: ${{ contains(github.ref_name, '-') }}
make_latest: ${{ !contains(github.ref_name, '-') }}