From aa269d3ff8175d5e6c8f0ac04fa5e23dacba28b1 Mon Sep 17 00:00:00 2001 From: Will Hopkins Date: Sun, 23 Apr 2023 13:04:23 -0700 Subject: [PATCH] chore: bump versions --- .github/workflows/publish.yml | 4 ++++ Cargo.toml | 4 ++-- shared/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1db179f..4f75266 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,6 +18,10 @@ jobs: os: ubuntu-latest artifact_name: target/release/ asset_name: -linux + - name: windows + os: windows-latest + artifact_name: target/release/.exe + asset_name: -windows - name: macos os: macos-latest artifact_name: target/release/ diff --git a/Cargo.toml b/Cargo.toml index a0b72bf..b44a509 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "term-sesh" -version = "0.1.4" +version = "0.1.5" edition = "2021" authors = ["Will Hopkins "] license = "MIT" @@ -34,7 +34,7 @@ once_cell = "1.17.1" log = "0.4.17" env_logger = "0.10.0" dialoguer = { version = "0.10.4", features = ["completion", "history", "fuzzy-select"] } -sesh-shared = { path = "./shared", version = "0.1.2" } +sesh-shared = { path = "./shared", version = "0.1.3" } sesh-proto = { path = "./proto", version = "0.1.1" } sesh-cli = { path = "./cli", version = "0.1.1" } diff --git a/shared/Cargo.toml b/shared/Cargo.toml index 6e0261a..a735556 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sesh-shared" -version = "0.1.2" +version = "0.1.3" edition = "2021" authors = ["Will Hopkins "] license = "MIT"