diff --git a/Cargo.lock b/Cargo.lock index 6cf51bcb..20e35838 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -809,7 +809,7 @@ dependencies = [ [[package]] name = "numbat" -version = "1.7.0" +version = "1.8.0" dependencies = [ "approx", "codespan-reporting", @@ -836,7 +836,7 @@ dependencies = [ [[package]] name = "numbat-cli" -version = "1.7.0" +version = "1.8.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/book/src/cli-installation.md b/book/src/cli-installation.md index 045ae9a9..cac360ca 100644 --- a/book/src/cli-installation.md +++ b/book/src/cli-installation.md @@ -10,8 +10,8 @@ Download the latest `.deb` package from [the release page](https://github.com/sh and install it via `dpkg`. For example: ``` bash -curl -LO https://github.com/sharkdp/numbat/releases/download/v1.7.0/numbat_1.7.0_amd64.deb -sudo dpkg -i numbat_1.7.0_amd64.deb +curl -LO https://github.com/sharkdp/numbat/releases/download/v1.8.0/numbat_1.8.0_amd64.deb +sudo dpkg -i numbat_1.8.0_amd64.deb ``` ### Arch Linux diff --git a/numbat-cli/Cargo.toml b/numbat-cli/Cargo.toml index 55b00243..a9f88b8e 100644 --- a/numbat-cli/Cargo.toml +++ b/numbat-cli/Cargo.toml @@ -6,7 +6,7 @@ categories = ["command-line-utilities", "science", "mathematics", "compilers"] keywords = ["language", "compiler", "physics", "units", "calculation"] homepage = "https://numbat.dev/" repository = "https://github.com/sharkdp/numbat" -version = "1.7.0" +version = "1.8.0" edition = "2021" license = "MIT OR Apache-2.0" readme = "../README.md" @@ -16,7 +16,7 @@ rust-version = "1.70" anyhow = "1" rustyline = { version = "12", features = ["derive"] } dirs = "5" -numbat = { version = "1.7.0", path = "../numbat" } +numbat = { version = "1.8.0", path = "../numbat" } colored = "2" itertools = "0.11" toml = { version = "0.8.6", features = ["parse"] } diff --git a/numbat/Cargo.toml b/numbat/Cargo.toml index 650da80b..11e147b3 100644 --- a/numbat/Cargo.toml +++ b/numbat/Cargo.toml @@ -6,7 +6,7 @@ categories = ["science", "mathematics", "compilers"] keywords = ["language", "compiler", "physics", "units", "calculation"] homepage = "https://numbat.dev/" repository = "https://github.com/sharkdp/numbat" -version = "1.7.0" +version = "1.8.0" edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md"