Skip to content

Commit

Permalink
Release version 0.1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
printfn committed Feb 14, 2021
1 parent 65e2286 commit 474be0c
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 11 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 cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fend"
# Don't forget to update print_version()
version = "0.1.13"
version = "0.1.14"
authors = ["printfn <[email protected]>"]
description = "Arbitrary-precision unit-aware calculator"
homepage = "https://github.com/printfn/fend"
Expand All @@ -18,5 +18,5 @@ directories = "3.0.1"
ctrlc = "3.1.7"

[dependencies.fend-core]
version = "0.1.13"
version = "0.1.14"
path = "../core"
13 changes: 11 additions & 2 deletions cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ Unique features:

See the [manual](https://github.com/printfn/fend/wiki) for more information.

## [Web Interface](https://printfn.github.io/fend-website)

fend is now available on the web at [printfn.github.io/fend-website](https://printfn.github.io/fend-website).

## Installation

<a href="https://repology.org/project/fend/versions">
Expand All @@ -33,6 +37,11 @@ $ fend
>
```

### Packages

* [AUR](https://aur.archlinux.org/packages/fend/)
* [nixpkgs](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/misc/fend/default.nix)

## [Manual](https://github.com/printfn/fend/wiki)

You can find the fend manual [here](https://github.com/printfn/fend/wiki).
Expand Down Expand Up @@ -60,8 +69,8 @@ approx. 0.7071067811 + 0.7071067811i
```

```
> 1 1/2' to cm
45.72 cm
> 100 °C to °F
210 °F
```

```
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fend-core"
# Don't forget to update html_root_url and get_version()
version = "0.1.13"
version = "0.1.14"
authors = ["printfn <[email protected]>"]
description = "Arbitrary-precision unit-aware calculator"
homepage = "https://github.com/printfn/fend"
Expand Down
4 changes: 2 additions & 2 deletions core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#![forbid(clippy::needless_borrow)]
#![forbid(clippy::cognitive_complexity)]
#![forbid(unreachable_pub)]
#![doc(html_root_url = "https://docs.rs/fend-core/0.1.13")]
#![doc(html_root_url = "https://docs.rs/fend-core/0.1.14")]

mod ast;
mod error;
Expand Down Expand Up @@ -107,7 +107,7 @@ pub fn evaluate_with_interrupt(
}

const fn get_version_as_str() -> &'static str {
"0.1.13"
"0.1.14"
}

/// Returns the current version of `fend-core`.
Expand Down
2 changes: 1 addition & 1 deletion wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fend-wasm"
version = "0.1.13"
version = "0.1.14"
authors = ["printfn <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down

0 comments on commit 474be0c

Please sign in to comment.