Skip to content

Commit 66b925b

Browse files
authored
release: 0.5.5 (#207)
* release: 0.5.5 * upgrade docker image * chore: upgrade
1 parent c952a2c commit 66b925b

File tree

8 files changed

+21
-15
lines changed

8 files changed

+21
-15
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# stage 1 - Setup cargo-chef
2-
FROM --platform=$BUILDPLATFORM rust:1.78.0-alpine3.19 as planner
2+
FROM --platform=$BUILDPLATFORM rust:1.82.0-alpine3.20 as planner
33

44
WORKDIR /app
55
RUN apk add gcc g++ make
@@ -13,7 +13,7 @@ COPY ./bin/metrsd/Cargo.toml ./bin/metrsd/Cargo.toml
1313
RUN cargo chef prepare --recipe-path recipe.json --bin ./bin/metrsd
1414

1515
# stage 2 - Cook our dependencies
16-
FROM --platform=$BUILDPLATFORM rust:1.78.0-alpine3.19 as cacher
16+
FROM --platform=$BUILDPLATFORM rust:1.82.0-alpine3.20 as cacher
1717

1818
WORKDIR /app
1919
COPY --from=planner /usr/local/cargo/bin/cargo-chef /usr/local/cargo/bin/cargo-chef
@@ -24,7 +24,7 @@ RUN export ARCH=$(uname -m) \
2424
&& cargo chef cook --release --target=$ARCH-unknown-linux-musl --recipe-path recipe.json --bin metrsd
2525

2626
# stage 3 - Build our project
27-
FROM --platform=$BUILDPLATFORM rust:1.78.0-alpine3.19 as builder
27+
FROM --platform=$BUILDPLATFORM rust:1.82.0-alpine3.20 as builder
2828

2929
## Build our metrs daemon binary
3030
WORKDIR /app
@@ -48,7 +48,7 @@ FROM --platform=$BUILDPLATFORM scratch
4848
## Copy the binary
4949
COPY --from=builder /bin/metrsd /bin/metrsd
5050

51-
LABEL org.opencontainers.image.source https://github.com/nxthat/metrs
51+
LABEL org.opencontainers.image.source https://github.com/next-hat/metrs
5252
LABEL org.opencontainers.image.description Metrics Emitter
5353

5454
## Set entrypoint

bin/metrs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["nanocl contributors <[email protected]>"]
66
description = "The Metrs daemon"
77
license = "MIT OR Apache-2.0"
88
readme = "../../readme.md"
9-
repository = "https://github.com/nxthat/metrs"
9+
repository = "https://github.com/next-hat/metrs"
1010

1111
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1212

bin/metrsd/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.5.5] - 2024-10-31
9+
10+
### Updated
11+
12+
- Dependencies update
13+
814
## [0.5.4] - 2024-06-07
915

1016
### Updated

bin/metrsd/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "metrsd"
3-
version = "0.5.4"
3+
version = "0.5.5"
44
edition = "2021"
55
authors = ["nanocl contributors <[email protected]>"]
66
description = "The Metrs daemon"
77
license = "MIT OR Apache-2.0"
88
readme = "../../readme.md"
9-
repository = "https://github.com/nxthat/metrs"
9+
repository = "https://github.com/next-hat/metrs"
1010

1111
[[bin]]
1212
name = "metrsd"

crates/metrs_stubs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
22
[package]
33
name = "metrs_stubs"
4-
version = "0.5.3"
4+
version = "0.5.5"
55
edition = "2021"
66
authors = ["nanocl contributors <[email protected]>"]
77
description = "Metrs shared data type"
88
license = "MIT OR Apache-2.0"
99
readme = "readme.md"
10-
repository = "https://github.com/nxthat/metrs"
10+
repository = "https://github.com/next-hat/metrs"
1111

1212
[lib]
1313
bench = false

crates/metrsd_client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "metrsd_client"
3-
version = "0.5.4"
3+
version = "0.5.5"
44
edition = "2021"
55
authors = ["nanocl contributors <[email protected]>"]
66
description = "The Metrs daemon api client"
77
readme = "readme.md"
88
license = "MIT OR Apache-2.0"
9-
repository = "https://github.com/nxthat/metrs"
9+
repository = "https://github.com/next-hat/metrs"
1010

1111
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1212

dev.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.78.0-alpine3.19
1+
FROM rust:1.82.0-alpine3.20
22

33
RUN apk add musl-dev make
44
RUN cargo install cargo-watch

0 commit comments

Comments
 (0)