From e73dac51f5641e82b7460d2c2602a5eb031835b1 Mon Sep 17 00:00:00 2001 From: Blizzard Finnegan Date: Tue, 20 Jun 2023 10:59:09 -0400 Subject: [PATCH] Version bump Also, fix readme typo --- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- README.md | 2 +- src/main.rs | 8 ++++---- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a2c6c09..3c9061b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -638,8 +638,8 @@ dependencies = [ ] [[package]] -name = "seymour_life_rust" -version = "2.3.0" +name = "seymour_life" +version = "2.3.1" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index ddf2de1..a8598f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,8 @@ #cargo-features = ["per-package-target"] [package] -name = "seymour_life_rust" -version = "2.3.0" +name = "seymour_life" +version = "2.3.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/README.md b/README.md index 1cadee5..ec1f967 100644 --- a/README.md +++ b/README.md @@ -68,4 +68,4 @@ sudo dnf install rust-libudev-sys-devel rust-pkg-config-devel #### Nix This applies to both NixOS, and any distribution where the [Nix package manager](https://nixos.org/download.html) can be installed. -If you have the Nix package manager installed, this project comes with a `shell.nix` package containing the necessary build dependencies. Simply run `nix-shell` to download the necessary dependencies. +If you have the Nix package manager installed, this project comes with a `shell.nix` containing the necessary build dependencies. Simply run `nix-shell` to download the necessary dependencies. diff --git a/src/main.rs b/src/main.rs index 3577796..04e76f3 100755 --- a/src/main.rs +++ b/src/main.rs @@ -1,6 +1,6 @@ -use seymour_life_rust::{device::Device, - tty::{self,TTY,Response}, - gpio_facade::GpioPins}; +use seymour_life::{device::Device, + tty::{self,TTY,Response}, + gpio_facade::GpioPins}; use std::{io::{stdin,stdout,Write}, thread::{self, JoinHandle}, path::Path, @@ -25,7 +25,7 @@ struct Args{ } -const VERSION:&str="2.3.0"; +const VERSION:&str="2.3.1"; const DEBUG_ITERATION_COUNT:u64=50000; fn int_input_filtering(prompt:Option<&str>) -> u64{