Skip to content

Commit

Permalink
Bump version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
sharkdp committed Sep 26, 2023
1 parent a114a07 commit 52bc0d2
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions book/src/cli-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.2/numbat_1.6.2_amd64.deb
sudo dpkg -i numbat_1.6.2_amd64.deb
curl -LO https://github.com/sharkdp/numbat/releases/download/v1.6.3/numbat_1.6.3_amd64.deb
sudo dpkg -i numbat_1.6.3_amd64.deb
```

### On Arch Linux
Expand Down
4 changes: 2 additions & 2 deletions numbat-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.2"
version = "1.6.3"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "../README.md"
Expand All @@ -16,7 +16,7 @@ rust-version = "1.70"
anyhow = "1"
rustyline = { version = "12", features = ["derive"] }
dirs = "5"
numbat = { version = "1.6.2", path = "../numbat" }
numbat = { version = "1.6.3", path = "../numbat" }
colored = "2"
itertools = "0.11"

Expand Down
2 changes: 1 addition & 1 deletion numbat-exchange-rates/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "A library to fetch and parse currency exchange rates from the ECB
authors = ["David Peter <[email protected]>"]
homepage = "https://numbat.dev/"
repository = "https://github.com/sharkdp/numbat"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.70"
Expand Down
4 changes: 2 additions & 2 deletions numbat-wasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions numbat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.2"
version = "1.6.3"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand All @@ -21,7 +21,7 @@ num-traits = "0.2"
codespan-reporting = "0.11"
strsim = "0.10.0"
pretty_dtoa = "0.3"
numbat-exchange-rates = { version = "0.2.0", path = "../numbat-exchange-rates" }
numbat-exchange-rates = { version = "0.3.0", path = "../numbat-exchange-rates" }
heck = { version = "0.4.1", features = ["unicode"] }
unicode-ident = "1.0.11"
unicode-width = "0.1.10"
Expand Down

0 comments on commit 52bc0d2

Please sign in to comment.