From 3adf320e8aed1d904d6009118fcf2c077090c718 Mon Sep 17 00:00:00 2001 From: David Peter Date: Tue, 19 Dec 2023 13:52:51 +0100 Subject: [PATCH] Bump version --- Cargo.lock | 4 ++-- book/src/cli-installation.md | 4 ++-- numbat-cli/Cargo.toml | 4 ++-- numbat/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 49ddc3e7..cada9403 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -803,7 +803,7 @@ dependencies = [ [[package]] name = "numbat" -version = "1.8.0" +version = "1.9.0" dependencies = [ "approx", "codespan-reporting", @@ -830,7 +830,7 @@ dependencies = [ [[package]] name = "numbat-cli" -version = "1.8.0" +version = "1.9.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/book/src/cli-installation.md b/book/src/cli-installation.md index cac360ca..e95fae95 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.8.0/numbat_1.8.0_amd64.deb -sudo dpkg -i numbat_1.8.0_amd64.deb +curl -LO https://github.com/sharkdp/numbat/releases/download/v1.9.0/numbat_1.9.0_amd64.deb +sudo dpkg -i numbat_1.9.0_amd64.deb ``` ### Arch Linux diff --git a/numbat-cli/Cargo.toml b/numbat-cli/Cargo.toml index 84ac6365..dc30d704 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.8.0" +version = "1.9.0" edition = "2021" license = "MIT OR Apache-2.0" readme = "../README.md" @@ -16,7 +16,7 @@ rust-version = "1.70" anyhow = "1" rustyline = { version = "13", features = ["derive"] } dirs = "5" -numbat = { version = "1.8.0", path = "../numbat" } +numbat = { version = "1.9.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 11e147b3..419b42c1 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.8.0" +version = "1.9.0" edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md"