Skip to content

Commit

Permalink
Release version 0.1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
printfn committed Jan 19, 2021
1 parent 7f4f981 commit 5cfc2c6
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.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ approx. 0.7071067811 + 0.7071067811i
```

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

```
Expand All @@ -85,7 +85,7 @@ approx. 0.3066013937 parsecs
```

```
> (x: 2x) pi
> (x => 2x) pi
approx. 6.2831853071
```

Expand Down
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.11"
version = "0.1.13"
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.11"
version = "0.1.13"
path = "../core"
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.11"
version = "0.1.13"
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 @@ -6,7 +6,7 @@
#![allow(clippy::non_ascii_literal)]
#![deny(clippy::use_self)]
#![deny(unreachable_pub)]
#![doc(html_root_url = "https://docs.rs/fend-core/0.1.11")]
#![doc(html_root_url = "https://docs.rs/fend-core/0.1.13")]

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

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

/// 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.11"
version = "0.1.13"
authors = ["printfn <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down

0 comments on commit 5cfc2c6

Please sign in to comment.