Skip to content

Commit 181b82f

Browse files
release: v2.1.0
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent cc8e8d7 commit 181b82f

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.1.0] - 2026-03-14
11+
1012
### Added
1113

1214
- `database.default_database` field for structured config: specifies which database to connect to during `create_if_missing` bootstrap. Defaults to `postgres` for PostgreSQL; MySQL connects without selecting a database. Useful when the user does not have access to the default `postgres` database.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "initium"
3-
version = "2.0.1"
3+
version = "2.1.0"
44
authors = ["Kitstream <opensource@kitstream.io>"]
55
categories = ["command-line-utilities", "development-tools"]
66
documentation = "https://docs.rs/initium"

docs/security.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@ Release images are signed with [cosign](https://github.com/sigstore/cosign) usin
8686
# Verify signature (requires cosign)
8787
cosign verify \
8888
--certificate-oidc-issuer https://token.actions.githubusercontent.com \
89-
--certificate-identity 'https://github.com/KitStream/initium/.github/workflows/release.yml@refs/tags/v2.0.1' \
90-
ghcr.io/kitstream/initium:2.0.1
89+
--certificate-identity 'https://github.com/KitStream/initium/.github/workflows/release.yml@refs/tags/v2.1.0' \
90+
ghcr.io/kitstream/initium:2.1.0
9191
9292
# Or use the Makefile target (also supports IMAGE=ghcr.io/kitstream/initium-jyq)
93-
make verify-image VERSION=2.0.1
93+
make verify-image VERSION=2.1.0
9494
```
9595

9696
### Verify SBOM attestation
@@ -99,8 +99,8 @@ make verify-image VERSION=2.0.1
9999
cosign verify-attestation \
100100
--type spdx \
101101
--certificate-oidc-issuer https://token.actions.githubusercontent.com \
102-
--certificate-identity 'https://github.com/KitStream/initium/.github/workflows/release.yml@refs/tags/v2.0.1' \
103-
ghcr.io/kitstream/initium:2.0.1
102+
--certificate-identity 'https://github.com/KitStream/initium/.github/workflows/release.yml@refs/tags/v2.1.0' \
103+
ghcr.io/kitstream/initium:2.1.0
104104
```
105105

106106
### View provenance and SBOM
@@ -109,8 +109,8 @@ Provenance and SBOM attestations are generated by Docker BuildKit during the ima
109109

110110
```bash
111111
# View provenance
112-
docker buildx imagetools inspect ghcr.io/kitstream/initium:2.0.1 --format '{{json .Provenance}}'
112+
docker buildx imagetools inspect ghcr.io/kitstream/initium:2.1.0 --format '{{json .Provenance}}'
113113
114114
# View SBOM
115-
docker buildx imagetools inspect ghcr.io/kitstream/initium:2.0.1 --format '{{json .SBOM}}'
115+
docker buildx imagetools inspect ghcr.io/kitstream/initium:2.1.0 --format '{{json .SBOM}}'
116116
```

0 commit comments

Comments
 (0)