You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`Bering v0.3.0` is the current product release of Bering: a discovery and publishing layer for service topology and endpoint contracts.
11
+
`Bering v0.3.1` is the current product release of Bering: a discovery and publishing layer for service topology and endpoint contracts.
12
12
13
13
Bering turns trace input or explicit topology input into stable JSON artifacts, and it can also run as a long-lived runtime service that emits rolling discovery snapshots plus conservative reconciliation views for trace gaps.
14
14
@@ -28,8 +28,8 @@ Bering owns discovery and discovery-side public contracts. It does not own simul
28
28
29
29
Do not treat the product release tag as the schema contract version.
30
30
31
-
- Current product release for this repository: `Bering v0.3.0`
32
-
- Current product git tag / GitHub Release: `v0.3.0`
31
+
- Current product release for this repository: `Bering v0.3.1`
32
+
- Current product git tag / GitHub Release: `v0.3.1`
Copy file name to clipboardExpand all lines: RELEASING.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Product releases and schema publishing are separate operations:
9
9
- product release tags: `vX.Y.Z`
10
10
- schema publishing tags: `schema-vA.B.C`
11
11
12
-
Product releases advance independently from the public schema contracts. As of the current release line, use `v0.3.0` for the product release while the default emitted public schema contracts are `1.1.0` and the preserved `1.0.0` contracts remain available for validation and pinned consumers.
12
+
Product releases advance independently from the public schema contracts. As of the current release line, use `v0.3.1` for the product release while the default emitted public schema contracts are `1.1.0` and the preserved `1.0.0` contracts remain available for validation and pinned consumers.
13
13
14
14
## Prerequisites
15
15
@@ -28,7 +28,7 @@ Dry-run without publishing:
28
28
29
29
```bash
30
30
make release-dry-run \
31
-
VERSION=0.3.0 \
31
+
VERSION=0.3.1 \
32
32
GIT_SHA="$(git rev-parse HEAD)" \
33
33
BUILD_DATE="$(git show -s --format=%cI HEAD)"
34
34
```
@@ -37,7 +37,7 @@ Full local release payload with OCI publish:
37
37
38
38
```bash
39
39
make release-local \
40
-
VERSION=0.3.0 \
40
+
VERSION=0.3.1 \
41
41
GIT_SHA="$(git rev-parse HEAD)" \
42
42
BUILD_DATE="$(git show -s --format=%cI HEAD)" \
43
43
IMAGE_REPOSITORY=ghcr.io/mb3r-lab/bering \
@@ -49,8 +49,8 @@ If the chart version must intentionally differ from the app version:
49
49
50
50
```bash
51
51
make chart-package \
52
-
VERSION=0.3.0 \
53
-
CHART_VERSION=0.3.1 \
52
+
VERSION=0.3.1 \
53
+
CHART_VERSION=0.3.2 \
54
54
ALLOW_CHART_VERSION_MISMATCH=1
55
55
```
56
56
@@ -80,7 +80,7 @@ These variables control the release payload:
80
80
-`CHART_VERSION`: optional explicit chart version
81
81
-`ALLOW_CHART_VERSION_MISMATCH=1`: required when `CHART_VERSION != VERSION`
82
82
83
-
For `v0.3.0`, `VERSION=0.3.0` while the default emitted public schema contracts are `1.1.0`.
83
+
For `v0.3.1`, `VERSION=0.3.1` while the default emitted public schema contracts are `1.1.0`.
Copy file name to clipboardExpand all lines: docs/install.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Install
2
2
3
-
Bering `v0.3.0` is the current product release. It emits `io.mb3r.bering.model@1.1.0` and `io.mb3r.bering.snapshot@1.1.0` by default, while still validating the preserved `1.0.0` contracts.
3
+
Bering `v0.3.1` is the current product release. It emits `io.mb3r.bering.model@1.1.0` and `io.mb3r.bering.snapshot@1.1.0` by default, while still validating the preserved `1.0.0` contracts.
4
4
5
5
## Binary Archives
6
6
@@ -14,18 +14,18 @@ Supported release targets:
14
14
-`darwin/arm64`
15
15
-`windows/amd64`
16
16
17
-
Example release asset names for `v0.3.0`:
17
+
Example release asset names for `v0.3.1`:
18
18
19
-
-`bering_0.3.0_linux_amd64.tar.gz`
20
-
-`bering_0.3.0_linux_arm64.tar.gz`
21
-
-`bering_0.3.0_darwin_amd64.tar.gz`
22
-
-`bering_0.3.0_darwin_arm64.tar.gz`
23
-
-`bering_0.3.0_windows_amd64.zip`
19
+
-`bering_0.3.1_linux_amd64.tar.gz`
20
+
-`bering_0.3.1_linux_arm64.tar.gz`
21
+
-`bering_0.3.1_darwin_amd64.tar.gz`
22
+
-`bering_0.3.1_darwin_arm64.tar.gz`
23
+
-`bering_0.3.1_windows_amd64.zip`
24
24
25
25
Example:
26
26
27
27
```bash
28
-
tar -xzf bering_0.3.0_linux_amd64.tar.gz
28
+
tar -xzf bering_0.3.1_linux_amd64.tar.gz
29
29
./bering help
30
30
```
31
31
@@ -40,8 +40,8 @@ go build ./cmd/bering
40
40
Pull the published runtime image:
41
41
42
42
```bash
43
-
docker pull ghcr.io/mb3r-lab/bering:v0.3.0
44
-
docker run --rm ghcr.io/mb3r-lab/bering:v0.3.0help
43
+
docker pull ghcr.io/mb3r-lab/bering:v0.3.1
44
+
docker run --rm ghcr.io/mb3r-lab/bering:v0.3.1help
45
45
```
46
46
47
47
The release manifest records all published image references and the final digest in `oci_images`.
@@ -51,13 +51,13 @@ The release manifest records all published image references and the final digest
0 commit comments