...
1# commit to be tagged for new release
2commit = "HEAD"
3
4project_name = "go-digest"
5github_repo = "opencontainers/go-digest"
6
7pre_release = false
8
9preface = """\
10This is the first official release of the go-digest package. This package
11provides a simple toolkit for working with the digests used in the open
12containers ecosystem.
13
14This includes support for `sha256`, `sha384`, and `sha512` algorithms, with
15`sha256` being the most common and preferred for greatest compatibility across
16the ecosystem. Encoding ambiguity has been removed by only supporting lower
17case hex-encoded characters in the format for this release.
18
19The `digestset` package is provided to securely and unambiguously use
20shortened forms of the digest in environments where there is a full set
21of known digests."""
22
23# notable prs to include in the release notes, 1234 is the pr number
24[notes]
25
26[breaking]
View as plain text