From aeb7f226d23126371483462afec01c1d1c926cfe Mon Sep 17 00:00:00 2001 From: anna-singleton Date: Sat, 23 Nov 2024 14:56:20 +0000 Subject: [PATCH 1/3] ci: replace the last bits of tps references --- .github/workflows/rust-build-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust-build-deploy.yml b/.github/workflows/rust-build-deploy.yml index 7f357c9..ae12e27 100644 --- a/.github/workflows/rust-build-deploy.yml +++ b/.github/workflows/rust-build-deploy.yml @@ -30,7 +30,7 @@ jobs: run: cargo test --release --verbose - name: Package Binary run: | - mv target/release/runfast . && tar czf tps-linux.tar.gz tps + mv target/release/runfast . && tar czf runfast-linux.tar.gz runfast - name: Create Release id: create_release From 890ee6afaead1b0caeb687ac44e3c90f00498bbc Mon Sep 17 00:00:00 2001 From: anna-singleton Date: Sat, 23 Nov 2024 14:58:37 +0000 Subject: [PATCH 2/3] chore: bump version --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 63c9288..38cbd69 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -786,7 +786,7 @@ checksum = "b833d8d034ea094b1ea68aa6d5c740e0d04bad9d16568d08ba6f76823a114316" [[package]] name = "runfast" -version = "0.5.1" +version = "0.5.2" dependencies = [ "clap 4.0.18", "clap_mangen", diff --git a/Cargo.toml b/Cargo.toml index b8a9dce..d64e9ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "runfast" -version = "0.5.1" +version = "0.5.2" edition = "2021" authors = ["Anna Singleton"] repository = "https://github.com/anna-singleton/runfast" From 56a43e1a3d4b4638df5ef462390fea8c42346116 Mon Sep 17 00:00:00 2001 From: anna-singleton Date: Sat, 23 Nov 2024 15:00:38 +0000 Subject: [PATCH 3/3] chore: add licenses and description --- Cargo.toml | 2 ++ LICENSE.txt | 20 ++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 LICENSE.txt diff --git a/Cargo.toml b/Cargo.toml index d64e9ea..76a5991 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,8 @@ version = "0.5.2" edition = "2021" authors = ["Anna Singleton"] repository = "https://github.com/anna-singleton/runfast" +description = "A workflow tool for quickly setting up and running programming projects" +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..6b49522 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,20 @@ +Copyright 2024 Anna Singleton + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the “Software”), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +