From 96b08cb0de5809b6776db2248c9bc8e9b6a39982 Mon Sep 17 00:00:00 2001 From: Miguel David Salcedo Date: Thu, 6 Jan 2022 14:28:00 +0000 Subject: [PATCH] Bump version of clap and fix release workflow --- .github/workflows/release.yml | 2 +- Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0ea7a545..df1ecb47 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,7 +42,7 @@ jobs: env: BUILD: ${{ matrix.build }} TARGET: ${{ matrix.target }} - DIR: target/${{ matrix.target }} + DIR: target/${{ matrix.target }}/release FILE: tortuga GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} shell: bash diff --git a/Cargo.toml b/Cargo.toml index 0e79ffea..7fdc28d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tortuga" description = "Compiler and runtime for the Tortuga programming language." -version = "0.5.2" +version = "0.5.3" authors = ["Miguel D. Salcedo "] edition = "2018" license = "Apache-2.0" @@ -28,7 +28,7 @@ default = ["cli"] cli = ["clap", "colored", "rustyline"] [dependencies] -clap = { version = "3.0.0-rc.9", features = ["derive"], optional = true } +clap = { version = "3.0", features = ["derive"], optional = true } colored = { version = "2.0.0", optional = true } lazy_static = "1.4" log = "0.4"