Skip to content

Commit

Permalink
Final preparation of the 0.5.0 release (#415)
Browse files Browse the repository at this point in the history
* Bump version to 0.5.0

* Update ankaios-docker too
  • Loading branch information
krucod3 authored Nov 14, 2024
1 parent f46d683 commit 740e6dd
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion agent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ank-agent"
version = "0.5.0-pre"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
description = "Eclipse Ankaios agent component"
Expand Down
2 changes: 1 addition & 1 deletion ank/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ank"
version = "0.5.0-pre"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
description = "The CLI of Eclipse Ankaios"
Expand Down
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "api"
version = "0.5.0-pre"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
description = "API definition for Eclipse Ankaios"
Expand Down
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "common"
version = "0.5.0-pre"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
description = "Common containers and utilities for Eclipse Ankaios"
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp_control_interface/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ FROM docker.io/library/alpine:3.18.4
RUN apk update && apk add --update-cache protobuf-dev
COPY --from=compile /workspaces/app/build/main /usr/local/bin/control_interface_example
RUN chmod +x /usr/local/bin/control_interface_example
ENV ANKAIOS_VERSION=0.5.0-pre
ENV ANKAIOS_VERSION=0.5.0

ENTRYPOINT ["/usr/local/bin/control_interface_example"]
2 changes: 1 addition & 1 deletion examples/nodejs_control_interface/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ COPY api/proto/ank_base.proto api/proto/control_api.proto /usr/local/lib/ankaios
COPY examples/nodejs_control_interface /workspaces/app
WORKDIR /workspaces/app
RUN npm install
ENV ANKAIOS_VERSION=0.5.0-pre
ENV ANKAIOS_VERSION=0.5.0

ENTRYPOINT ["node", "/workspaces/app/src/main.js"]
2 changes: 1 addition & 1 deletion examples/python_control_interface/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ FROM base
ENV PYTHONPATH="${PYTHONPATH}:/usr/local/lib/ankaios"
COPY --from=dev /usr/local/lib/ankaios /usr/local/lib/ankaios
COPY examples/python_control_interface /ankaios
ENV ANKAIOS_VERSION=0.5.0-pre
ENV ANKAIOS_VERSION=0.5.0

ENTRYPOINT ["python3", "-u", "/ankaios/src/main.py"]
2 changes: 1 addition & 1 deletion examples/rust_control_interface/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN curl --proto '=https' --tlsv1.2 -sS https://sh.rustup.rs | sh -s -- -y > /de
COPY api ${WORKSPACE_DIR}/api
COPY examples/rust_control_interface ${WORKSPACE_DIR}
WORKDIR ${WORKSPACE_DIR}
ENV ANKAIOS_VERSION=0.5.0-pre
ENV ANKAIOS_VERSION=0.5.0
RUN --mount=type=cache,target=${WORKSPACE_DIR}/target/release cargo build --release \
&& cp ${WORKSPACE_DIR}/target/release/control_interface_example /usr/local/bin/

Expand Down
2 changes: 1 addition & 1 deletion grpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grpc"
version = "0.5.0-pre"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
description = "A gRPC communication middleware for Eclipse Ankaios"
Expand Down
2 changes: 1 addition & 1 deletion server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ank-server"
version = "0.5.0-pre"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
description = "Eclipse Ankaios server component"
Expand Down
2 changes: 1 addition & 1 deletion tools/ankaios-docker/agent/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:24.04

ARG TARGETARCH
ARG VERSION=v0.4.0
ARG VERSION=0.5.0

RUN apt update && \
apt install -y curl podman
Expand Down
2 changes: 1 addition & 1 deletion tools/ankaios-docker/server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:24.04

ARG TARGETARCH
ARG VERSION=v0.4.0
ARG VERSION=0.5.0

RUN apt update && \
apt install -y curl
Expand Down

0 comments on commit 740e6dd

Please sign in to comment.