This commit is contained in:
bakk 2021-06-02 22:37:24 +02:00
parent e9328c25ab
commit 6468a6efb0
6 changed files with 11 additions and 11 deletions

View File

@ -20,7 +20,7 @@ jobs:
continue-on-error: true continue-on-error: true
run: cargo publish --manifest-path kalk/Cargo.toml --token ${{ secrets.CARGO_REGISTRY_TOKEN }} --verbose run: cargo publish --manifest-path kalk/Cargo.toml --token ${{ secrets.CARGO_REGISTRY_TOKEN }} --verbose
- name: Publish CLI - name: Publish CLI
run: sleep 20 && cargo publish --manifest-path kalker/Cargo.toml --token ${{ secrets.CARGO_REGISTRY_TOKEN }} --verbose run: sleep 20 && cargo publish --manifest-path cli/Cargo.toml --token ${{ secrets.CARGO_REGISTRY_TOKEN }} --verbose
publish_npm: publish_npm:
name: publish to npm name: publish to npm

4
Cargo.lock generated
View File

@ -147,7 +147,7 @@ dependencies = [
[[package]] [[package]]
name = "kalk" name = "kalk"
version = "2.0.4" version = "2.1.0"
dependencies = [ dependencies = [
"lazy_static", "lazy_static",
"regex", "regex",
@ -159,7 +159,7 @@ dependencies = [
[[package]] [[package]]
name = "kalker" name = "kalker"
version = "0.5.4" version = "1.0.0"
dependencies = [ dependencies = [
"ansi_term", "ansi_term",
"atty", "atty",

View File

@ -9,11 +9,11 @@ license = "MIT"
name = "kalker" name = "kalker"
readme = "../README.md" readme = "../README.md"
repository = "https://github.com/PaddiM8/kalker" repository = "https://github.com/PaddiM8/kalker"
version = "0.5.4" version = "1.0.0"
[dependencies] [dependencies]
ansi_term = "0.12.1" ansi_term = "0.12.1"
kalk = { path = "../kalk", version = "^2.0.4" } kalk = { path = "../kalk", version = "^2.1.0" }
lazy_static = "1.4.0" lazy_static = "1.4.0"
regex = "1" regex = "1"
rustyline = "7.1.0" rustyline = "7.1.0"

View File

@ -1,11 +1,11 @@
[package] [package]
name = "kalk" name = "kalk"
version = "2.0.4" version = "2.1.0"
authors = ["PaddiM8"] authors = ["PaddiM8"]
edition = "2018" edition = "2018"
readme = "README.md" readme = "README.md"
description = "A math evaluator library that supports user-defined functions, variables and units, and can handle fairly ambiguous syntax." description = "A math evaluator library that supports user-defined functions, variables and units, and can handle fairly ambiguous syntax."
repository = "https://github.com/PaddiM8/kalk/tree/master/kalk" repository = "https://github.com/PaddiM8/kalker/tree/master/kalk"
license = "MIT" license = "MIT"
keywords = ["math", "calculator", "evaluator"] keywords = ["math", "calculator", "evaluator"]
categories = ["mathematics", "parser-implementations"] categories = ["mathematics", "parser-implementations"]

View File

@ -16,7 +16,7 @@
"@capacitor/android": "^2.4.5", "@capacitor/android": "^2.4.5",
"@capacitor/cli": "^2.4.5", "@capacitor/cli": "^2.4.5",
"@capacitor/core": "^2.4.5", "@capacitor/core": "^2.4.5",
"@paddim8/kalk-component": "^1.2.3" "@paddim8/kalk-component": "^1.3.0"
}, },
"devDependencies": { "devDependencies": {
"@capacitor-community/electron": "^1.3.2", "@capacitor-community/electron": "^1.3.2",
@ -25,4 +25,4 @@
"gulp-sass": "^4.1.0", "gulp-sass": "^4.1.0",
"sass": "^1.32.0" "sass": "^1.32.0"
} }
} }

View File

@ -55,10 +55,10 @@
"webpack-dev-server": "^3.11.0" "webpack-dev-server": "^3.11.0"
}, },
"dependencies": { "dependencies": {
"@paddim8/kalk": "^2.0.4", "@paddim8/kalk": "^2.1.0",
"shadow-selection-polyfill": "^1.1.0" "shadow-selection-polyfill": "^1.1.0"
}, },
"browserslist": [ "browserslist": [
"defaults" "defaults"
] ]
} }