Version bump
All checks were successful
Basic Cargo Checks / docker-build (push) Successful in 1m33s
Basic Cargo Checks / docker-check (push) Successful in 3m53s

Also, fix readme typo
This commit is contained in:
Blizzard Finnegan 2023-06-20 10:59:09 -04:00
parent c501f6c5e6
commit e73dac51f5
Signed by: blizzardfinnegan
GPG key ID: 61C1E13067E0018E
4 changed files with 9 additions and 9 deletions

4
Cargo.lock generated
View file

@ -638,8 +638,8 @@ dependencies = [
]
[[package]]
name = "seymour_life_rust"
version = "2.3.0"
name = "seymour_life"
version = "2.3.1"
dependencies = [
"chrono",
"clap",

View file

@ -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

View file

@ -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.

View file

@ -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{