From 1915374c5cf229029b110798909c0e1c2fa199d3 Mon Sep 17 00:00:00 2001 From: snek Date: Wed, 21 Aug 2024 08:26:21 -0700 Subject: [PATCH] version 0.104.0 (#1585) --- .github/workflows/ci.yml | 4 +++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ce3884a..549e6a40 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -220,7 +220,9 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - files: target/${{ env.LIB_NAME }}_${{ matrix.config.variant }}_${{ matrix.config.target }}.${{ env.LIB_EXT }}.gz + files: | + target/${{ env.LIB_NAME }}_${{ matrix.config.variant }}_${{ matrix.config.target }}.${{ env.LIB_EXT }}.gz + target/src_binding_${{ matrix.config.variant }}_${{ matrix.config.target }}.rs - name: Upload CI artifacts uses: actions/upload-artifact@v4 diff --git a/Cargo.lock b/Cargo.lock index cc70ded0..834a8e17 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1452,7 +1452,7 @@ checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" [[package]] name = "v8" -version = "0.103.0" +version = "0.104.0" dependencies = [ "align-data", "bindgen", diff --git a/Cargo.toml b/Cargo.toml index 575c3aa7..3acbb2cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "v8" -version = "0.103.0" +version = "0.104.0" description = "Rust bindings to V8" readme = "README.md" authors = ["the Deno authors"]