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]] [[package]]
name = "seymour_life_rust" name = "seymour_life"
version = "2.3.0" version = "2.3.1"
dependencies = [ dependencies = [
"chrono", "chrono",
"clap", "clap",

View file

@ -1,8 +1,8 @@
#cargo-features = ["per-package-target"] #cargo-features = ["per-package-target"]
[package] [package]
name = "seymour_life_rust" name = "seymour_life"
version = "2.3.0" version = "2.3.1"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # 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 #### Nix
This applies to both NixOS, and any distribution where the [Nix package manager](https://nixos.org/download.html) can be installed. 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,4 +1,4 @@
use seymour_life_rust::{device::Device, use seymour_life::{device::Device,
tty::{self,TTY,Response}, tty::{self,TTY,Response},
gpio_facade::GpioPins}; gpio_facade::GpioPins};
use std::{io::{stdin,stdout,Write}, use std::{io::{stdin,stdout,Write},
@ -25,7 +25,7 @@ struct Args{
} }
const VERSION:&str="2.3.0"; const VERSION:&str="2.3.1";
const DEBUG_ITERATION_COUNT:u64=50000; const DEBUG_ITERATION_COUNT:u64=50000;
fn int_input_filtering(prompt:Option<&str>) -> u64{ fn int_input_filtering(prompt:Option<&str>) -> u64{