Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
sharkdp committed Jan 1, 2025
1 parent e8bac1f commit c7763d7
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ abstract: >-
computations with first class support for physical
dimensions and units.
license: MIT
version: 1.14.0
version: 1.15.0
date-released: '2024-10-11'
4 changes: 2 additions & 2 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 @@ -12,8 +12,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.14.0/numbat_1.14.0_amd64.deb
sudo dpkg -i numbat_1.14.0_amd64.deb
curl -LO https://github.com/sharkdp/numbat/releases/download/v1.15.0/numbat_1.15.0_amd64.deb
sudo dpkg -i numbat_1.15.0_amd64.deb
```

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.
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.14.0"
version = "1.15.0"
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 = "14.0.0", features = ["derive"] }
dirs = "5"
numbat = { version = "1.14.0", path = "../numbat" }
numbat = { version = "1.15.0", path = "../numbat" }
colored = "2"
itertools = "0.12"
toml = { version = "0.8.8", features = ["parse"] }
Expand Down
39 changes: 38 additions & 1 deletion numbat-wasm/Cargo.lock

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

9 changes: 6 additions & 3 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.14.0"
version = "1.15.0"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand All @@ -26,7 +26,10 @@ heck = { version = "0.4.1", features = ["unicode"] }
unicode-ident = "1.0.12"
unicode-width = "0.1.11"
libc = "0.2.152"
rust-embed = { version = "8.2.0", features = ["interpolate-folder-path", "debug-embed"] }
rust-embed = { version = "8.2.0", features = [
"interpolate-folder-path",
"debug-embed",
] }
num-format = "0.4.4"
walkdir = "2"
jiff = { version = "0.1.3", features = ["js"] }
Expand All @@ -37,7 +40,7 @@ strfmt = "0.2.4"
indexmap = "2.2.6"
mendeleev = "0.8.1"
plotly = "0.10.0"
compact_str = { version="0.8.0", features = ["serde"] }
compact_str = { version = "0.8.0", features = ["serde"] }

[features]
default = ["fetch-exchangerates"]
Expand Down

0 comments on commit c7763d7

Please sign in to comment.