Skip to content

Commit c7763d7

Browse files
committed
Bump version
1 parent e8bac1f commit c7763d7

File tree

6 files changed

+51
-11
lines changed

6 files changed

+51
-11
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ abstract: >-
1616
computations with first class support for physical
1717
dimensions and units.
1818
license: MIT
19-
version: 1.14.0
19+
version: 1.15.0
2020
date-released: '2024-10-11'

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

book/src/cli-installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Download the latest `.deb` package from [the release page](https://github.com/sh
1212
and install it via `dpkg`. For example:
1313

1414
``` bash
15-
curl -LO https://github.com/sharkdp/numbat/releases/download/v1.14.0/numbat_1.14.0_amd64.deb
16-
sudo dpkg -i numbat_1.14.0_amd64.deb
15+
curl -LO https://github.com/sharkdp/numbat/releases/download/v1.15.0/numbat_1.15.0_amd64.deb
16+
sudo dpkg -i numbat_1.15.0_amd64.deb
1717
```
1818

1919
Alternatively, if you want automatic updates, you can use a community-maintained [Numbat PPA](https://launchpad.net/~apandada1/+archive/ubuntu/numbat). The PPA only hosts packages for the `amd64`/`x86_64` architecture.

numbat-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ categories = ["command-line-utilities", "science", "mathematics", "compilers"]
66
keywords = ["language", "compiler", "physics", "units", "calculation"]
77
homepage = "https://numbat.dev/"
88
repository = "https://github.com/sharkdp/numbat"
9-
version = "1.14.0"
9+
version = "1.15.0"
1010
edition = "2021"
1111
license = "MIT OR Apache-2.0"
1212
readme = "../README.md"
@@ -16,7 +16,7 @@ rust-version = "1.70"
1616
anyhow = "1"
1717
rustyline = { version = "14.0.0", features = ["derive"] }
1818
dirs = "5"
19-
numbat = { version = "1.14.0", path = "../numbat" }
19+
numbat = { version = "1.15.0", path = "../numbat" }
2020
colored = "2"
2121
itertools = "0.12"
2222
toml = { version = "0.8.8", features = ["parse"] }

numbat-wasm/Cargo.lock

Lines changed: 38 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

numbat/Cargo.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ categories = ["science", "mathematics", "compilers"]
66
keywords = ["language", "compiler", "physics", "units", "calculation"]
77
homepage = "https://numbat.dev/"
88
repository = "https://github.com/sharkdp/numbat"
9-
version = "1.14.0"
9+
version = "1.15.0"
1010
edition = "2021"
1111
license = "MIT OR Apache-2.0"
1212
readme = "README.md"
@@ -26,7 +26,10 @@ heck = { version = "0.4.1", features = ["unicode"] }
2626
unicode-ident = "1.0.12"
2727
unicode-width = "0.1.11"
2828
libc = "0.2.152"
29-
rust-embed = { version = "8.2.0", features = ["interpolate-folder-path", "debug-embed"] }
29+
rust-embed = { version = "8.2.0", features = [
30+
"interpolate-folder-path",
31+
"debug-embed",
32+
] }
3033
num-format = "0.4.4"
3134
walkdir = "2"
3235
jiff = { version = "0.1.3", features = ["js"] }
@@ -37,7 +40,7 @@ strfmt = "0.2.4"
3740
indexmap = "2.2.6"
3841
mendeleev = "0.8.1"
3942
plotly = "0.10.0"
40-
compact_str = { version="0.8.0", features = ["serde"] }
43+
compact_str = { version = "0.8.0", features = ["serde"] }
4144

4245
[features]
4346
default = ["fetch-exchangerates"]

0 commit comments

Comments
 (0)