Skip to content

Commit

Permalink
kalk: Fixed type error in kalk_num/regular.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
PaddiM8 committed Feb 22, 2021
1 parent e5f54df commit f4e6265
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
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.

2 changes: 1 addition & 1 deletion kalk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kalk"
version = "1.4.2"
version = "1.4.3"
authors = ["PaddiM8"]
edition = "2018"
readme = "README.md"
Expand Down
1 change: 1 addition & 0 deletions kalk/src/kalk_num/regular.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ impl KalkNum {
.to_string()
.trim_end_matches('0')
.trim_end_matches('.')
.to_string()
}

#[wasm_bindgen(js_name = toStringBig)]
Expand Down
4 changes: 2 additions & 2 deletions kalk_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kalk_cli"
version = "0.3.13"
version = "0.3.14"
authors = ["PaddiM8"]
edition = "2018"
readme = "../README.md"
Expand All @@ -16,7 +16,7 @@ path = "src/main.rs"
name = "kalk"

[dependencies]
kalk = { path = "../kalk", version = "^1.4.2" }
kalk = { path = "../kalk", version = "^1.4.3" }
rustyline = "7.1.0"
ansi_term = "0.12.1"
regex = "1"
Expand Down
2 changes: 1 addition & 1 deletion kalk_web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@paddim8/kalk": "^1.4.2",
"@paddim8/kalk": "^1.4.3",
"shadow-selection-polyfill": "^1.1.0"
},
"browserslist": [
Expand Down

0 comments on commit f4e6265

Please sign in to comment.