Skip to content

Commit

Permalink
Bump v0.25.0-6
Browse files Browse the repository at this point in the history
Signed-off-by: Martynas Gurskas <[email protected]>
  • Loading branch information
Lipt0nas committed Mar 21, 2024
1 parent 82171e0 commit 7fe3f94
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ FROM rust:1.74-bullseye as builder
COPY . /project

# Download crates.io index, saves time if subsequent steps change
RUN cargo search --limit 0
RUN cargo search --limit 1

RUN cd /project && cargo install --path uniffi-bindgen
RUN cargo install uniffi-bindgen-cs --tag v0.8.0+v0.25.0 --git https://github.com/NordSecurity/uniffi-bindgen-cs
RUN cargo install uniffi-bindgen-go --tag v0.2.1+v0.25.0 --git https://github.com/NordSecurity/uniffi-bindgen-go
RUN cargo install uniffi-bindgen-cpp --tag v0.4.1+v0.25.0 --git https://github.com/NordSecurity/uniffi-bindgen-cpp
RUN cargo install uniffi-bindgen-cpp --tag v0.4.2+v0.25.0 --git https://github.com/NordSecurity/uniffi-bindgen-cpp

FROM rust:1.74-bullseye
COPY --from=builder /usr/local/cargo/bin/uniffi-bindgen /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-6 | v0.3.0+0.25.0 | v0.8.0+v0.25.0 | v0.2.1+v0.25.0 | **v0.4.2+v0.25.0** |
| v0.25.0-5 | v0.3.0+0.25.0 | v0.8.0+v0.25.0 | v0.2.1+v0.25.0 | **v0.4.1+v0.25.0** |
| v0.25.0-4 | v0.3.0+0.25.0 | **v0.8.0+v0.25.0** | **v0.2.1+v0.25.0** | **v0.4.0+v0.25.0** |
| v0.25.0-3 | v0.3.0+0.25.0 | v0.7.0+v0.25.0 | v0.2.0+v0.25.0 | **v0.3.0+v0.25.0** |
Expand Down
2 changes: 1 addition & 1 deletion compatibility-test/setup_test_source.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ download_file "$GITHUB_URL/binding_tests/coverall_test.go" "$TMP_DIR/go"
download_file "$GITHUB_URL/binding_tests/go.mod" "$TMP_DIR/go"
download_file "$GITHUB_URL/binding_tests/go.sum" "$TMP_DIR/go"

GITHUB_VERSION="v0.4.1+v0.25.0"
GITHUB_VERSION="v0.4.2+v0.25.0"
GITHUB_URL="https://raw.githubusercontent.com/NordSecurity/uniffi-bindgen-cpp/$GITHUB_VERSION"
download_file "$GITHUB_URL/cpp-tests/tests/coverall/main.cpp" "$TMP_DIR/cpp/coverall"
download_file "$GITHUB_URL/cpp-tests/include/test_common.hpp" "$TMP_DIR/cpp/include"

0 comments on commit 7fe3f94

Please sign in to comment.