Skip to content

Commit ef91052

Browse files
authored
chore: bump version to v1.14.0 (#1489)
Signed-off-by: Guillaume Belanger <guillaume.belanger27@gmail.com>
1 parent 7e25902 commit ef91052

8 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/snap-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ jobs:
3434
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }}
3535
with:
3636
snap: ${{ steps.find-snap.outputs.snap_file }}
37-
release: 1.13/edge
37+
release: 1.14/edge

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Build the image and push it to the local registry
2727

2828
```shell
2929
rockcraft pack
30-
sudo rockcraft.skopeo --insecure-policy copy oci-archive:ella-core_v1.13.0_amd64.rock docker-daemon:ella-core:latest
30+
sudo rockcraft.skopeo --insecure-policy copy oci-archive:ella-core_v1.14.0_amd64.rock docker-daemon:ella-core:latest
3131
docker tag ella-core:latest localhost:5000/ella-core:latest
3232
docker push localhost:5000/ella-core:latest
3333
```
@@ -92,7 +92,7 @@ uvx --with-requirements requirements-docs.txt mkdocs build
9292
```shell
9393
sudo snap install rockcraft --classic --edge
9494
rockcraft pack -v
95-
sudo rockcraft.skopeo --insecure-policy copy oci-archive:ella-core_v1.13.0_amd64.rock docker-daemon:ella-core:latest
95+
sudo rockcraft.skopeo --insecure-policy copy oci-archive:ella-core_v1.14.0_amd64.rock docker-daemon:ella-core:latest
9696
docker run ella-core:latest
9797
```
9898

docs/how_to/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Ensure your system meets the [requirements](../reference/system_reqs.md). Then,
113113

114114
services:
115115
ella-core:
116-
image: ghcr.io/ellanetworks/ella-core:v1.13.0
116+
image: ghcr.io/ellanetworks/ella-core:v1.14.0
117117
configs:
118118
- source: ella_config
119119
target: /core.yaml
@@ -152,5 +152,5 @@ Ensure your system meets the [requirements](../reference/system_reqs.md). Then,
152152
Ensure your Kubernetes cluster is running with the [Multus CNI](https://github.com/k8snetworkplumbingwg/multus-cni) installed.
153153

154154
```bash
155-
kubectl apply -k github.com/ellanetworks/core/k8s?ref=v1.13.0 -n ella
155+
kubectl apply -k github.com/ellanetworks/core/k8s?ref=v1.14.0 -n ella
156156
```

docs/reference/api/cluster.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ None
2727
"nodeId": 1,
2828
"raftAddress": "10.0.0.1:7000",
2929
"apiAddress": "https://10.0.0.1:5000",
30-
"binaryVersion": "v1.13.0",
30+
"binaryVersion": "v1.14.0",
3131
"suffrage": "voter",
3232
"isLeader": true,
3333
"drainState": "active"
@@ -36,7 +36,7 @@ None
3636
"nodeId": 2,
3737
"raftAddress": "10.0.0.2:7000",
3838
"apiAddress": "https://10.0.0.2:5000",
39-
"binaryVersion": "v1.13.0",
39+
"binaryVersion": "v1.14.0",
4040
"suffrage": "voter",
4141
"isLeader": false,
4242
"drainState": "active"

docs/reference/api/status.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The nested `cluster` object is present only when HA is enabled:
4646
```json
4747
{
4848
"result": {
49-
"version": "v1.13.0",
49+
"version": "v1.14.0",
5050
"revision": "388ce92244a0b304e9f6c15e3f896acee6fe7b1a",
5151
"initialized": true,
5252
"ready": true,
@@ -60,7 +60,7 @@ When clustering is enabled, the response includes a `cluster` object:
6060
```json
6161
{
6262
"result": {
63-
"version": "v1.13.0",
63+
"version": "v1.14.0",
6464
"revision": "388ce92244a0b304e9f6c15e3f896acee6fe7b1a",
6565
"initialized": true,
6666
"ready": true,

docs/tutorials/getting_started_simulation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Copy the following file into this directory:
3030
```yaml title="docker-compose.yaml"
3131
services:
3232
ella-core:
33-
image: ghcr.io/ellanetworks/ella-core:v1.13.0
33+
image: ghcr.io/ellanetworks/ella-core:v1.14.0
3434
restart: unless-stopped
3535
entrypoint: /bin/core --config /core.yaml
3636
privileged: true

k8s/core-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
spec:
2222
containers:
2323
- name: core
24-
image: ghcr.io/ellanetworks/ella-core:v1.13.0
24+
image: ghcr.io/ellanetworks/ella-core:v1.14.0
2525
imagePullPolicy: Always
2626
command: ["core"]
2727
args: ["--config", "/config/config.yaml"]

version/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.13.0
1+
v1.14.0

0 commit comments

Comments
 (0)