Browse Source

Bump version

David Peter 8 months ago
parent
commit
d4c36dcd9c
6 changed files with 11 additions and 11 deletions
  1. 2 2
      CITATION.cff
  2. 2 2
      Cargo.lock
  3. 2 2
      book/src/cli-installation.md
  4. 2 2
      numbat-cli/Cargo.toml
  5. 2 2
      numbat-wasm/Cargo.lock
  6. 1 1
      numbat/Cargo.toml

+ 2 - 2
CITATION.cff

@@ -16,5 +16,5 @@ abstract: >-
   computations with first class support for physical
   dimensions and units.
 license: MIT
-version: 1.15.0
-date-released: '2024-10-11'
+version: 1.16.0
+date-released: '2025-01-31'

+ 2 - 2
Cargo.lock

@@ -1087,7 +1087,7 @@ dependencies = [
 
 [[package]]
 name = "numbat"
-version = "1.15.0"
+version = "1.16.0"
 dependencies = [
  "approx",
  "codespan-reporting",
@@ -1124,7 +1124,7 @@ dependencies = [
 
 [[package]]
 name = "numbat-cli"
-version = "1.15.0"
+version = "1.16.0"
 dependencies = [
  "anyhow",
  "assert_cmd",

+ 2 - 2
book/src/cli-installation.md

@@ -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.15.0/numbat_1.15.0_amd64.deb
-sudo dpkg -i numbat_1.15.0_amd64.deb
+curl -LO https://github.com/sharkdp/numbat/releases/download/v1.16.0/numbat_1.16.0_amd64.deb
+sudo dpkg -i numbat_1.16.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.

+ 2 - 2
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.15.0"
+version = "1.16.0"
 edition = "2021"
 license = "MIT OR Apache-2.0"
 readme = "../README.md"
@@ -16,7 +16,7 @@ rust-version = "1.70"
 anyhow = "1"
 rustyline = { version = "14.0.0", features = ["derive"] }
 dirs = "5"
-numbat = { version = "1.15.0", path = "../numbat" }
+numbat = { version = "1.16.0", path = "../numbat" }
 colored = "2"
 itertools = "0.12"
 toml = { version = "0.8.8", features = ["parse"] }

+ 2 - 2
numbat-wasm/Cargo.lock

@@ -1,6 +1,6 @@
 # This file is automatically @generated by Cargo.
 # It is not intended for manual editing.
-version = 3
+version = 4
 
 [[package]]
 name = "ahash"
@@ -613,7 +613,7 @@ dependencies = [
 
 [[package]]
 name = "numbat"
-version = "1.15.0"
+version = "1.16.0"
 dependencies = [
  "codespan-reporting",
  "compact_str",

+ 1 - 1
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.15.0"
+version = "1.16.0"
 edition = "2021"
 license = "MIT OR Apache-2.0"
 readme = "README.md"