Skip to content

Commit

Permalink
Bump version of clap and fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
misalcedo authored Jan 6, 2022
1 parent 7f4bd99 commit 96b08cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <miguel@salcedo.cc>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -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"
Expand Down

0 comments on commit 96b08cb

Please sign in to comment.