Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump v0.25.0-14 #25

Merged
merged 1 commit into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- uses: actions-rs/toolchain@b2417cde72dcf67f306c0ae8e0828a81bf0b189f
with:
toolchain: "1.74"
toolchain: "1.78"
default: true
- uses: actions-rs/cargo@ae10961054e4aa8b4aa7dffede299aaf087aa33b
with:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.74-bullseye as builder
FROM rust:1.78-bullseye as builder
COPY . /project

# Download crates.io index, saves time if subsequent steps change
Expand All @@ -9,7 +9,7 @@ RUN cargo install uniffi-bindgen-cs --tag v0.8.3+v0.25.0 --git https://github.co
RUN cargo install uniffi-bindgen-go --tag v0.2.2+v0.25.0 --git https://github.com/NordSecurity/uniffi-bindgen-go
RUN cargo install uniffi-bindgen-cpp --tag v0.6.1+v0.25.0 --git https://github.com/NordSecurity/uniffi-bindgen-cpp

FROM rust:1.74-bullseye
FROM rust:1.78-bullseye
COPY --from=builder /usr/local/cargo/bin/uniffi-bindgen /bin
COPY --from=builder /usr/local/cargo/bin/uniffi-bindgen-cs /bin
COPY --from=builder /usr/local/cargo/bin/uniffi-bindgen-go /bin
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ shows which versions of each generator are inside the docker image.

| Docker image | uniffi-rs version | uniffi-bindgen-cs version | uniffi-bindgen-go version | uniffi-bindgen-cpp version |
|------------------------|-----------------------|---------------------------|---------------------------|----------------------------|
| v0.25.0-14 | **v0.3.3+v0.25.0** | v0.8.3+v0.25.0 | v0.2.2+v0.25.0 | v0.6.1+v0.25.0 |
| v0.25.0-13 | v0.3.2+v0.25.0 | v0.8.3+v0.25.0 | **v0.2.2+v0.25.0** | v0.6.1+v0.25.0 |
| v0.25.0-12 | **v0.3.2+v0.25.0** | v0.8.3+v0.25.0 | v0.2.1+v0.25.0 | v0.6.1+v0.25.0 |
| v0.25.0-11 | v0.3.0+0.25.0 | **v0.8.3+v0.25.0** | v0.2.1+v0.25.0 | v0.6.1+v0.25.0 |
Expand Down
2 changes: 1 addition & 1 deletion uniffi-bindgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ version = "0.25.0"
edition = "2021"

[dependencies]
uniffi = { git = "https://github.com/NordSecurity/uniffi-rs.git", tag = "v0.3.2+v0.25.0", features = ["cli"] }
uniffi = { git = "https://github.com/NordSecurity/uniffi-rs.git", tag = "v0.3.3+v0.25.0", features = ["cli"] }
Loading