Skip to content

Commit

Permalink
release: upgrade to v0.5 (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
ImJeremyHe committed Dec 29, 2023
1 parent c0444a1 commit 56c59fe
Show file tree
Hide file tree
Showing 10 changed files with 35 additions and 30 deletions.
14 changes: 7 additions & 7 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "logisheets"
version = "0.4.0"
version = "0.5.0"
description = "A web spreadsheets application written in Rust and Typescript"
keywords = ["excel", "spreadsheets", "ooxml", "logisheets", "xlsx"]
readme = "README.md"
Expand Down Expand Up @@ -28,8 +28,8 @@ members = [
]

[dependencies]
logisheets_controller = {path = "crates/controller", version = "0.4.0"}
logisheets_workbook = {path = "crates/workbook", version = "0.4.0"}
logisheets_controller = {path = "crates/controller", version = "0.5.0"}
logisheets_workbook = {path = "crates/workbook", version = "0.5.0"}

[dev-dependencies]
glob = "0.3.1"
Expand Down
12 changes: 6 additions & 6 deletions crates/controller/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "logisheets_controller"
version = "0.4.0"
version = "0.5.0"
description = "the core of LogiSheets"
authors = ["ImJeremyHe<yiliang.he@qq.com>"]
edition = "2018"
Expand All @@ -26,11 +26,11 @@ unicode-segmentation = "1.10.1"
wildescape = "0.1.0"
uuid ={ version = "1.4.1", features = ["v4", "fast-rng", "macro-diagnostics"]}

logisheets_base = {version = "0.4.0", path = "./base", features = ["gents"]}
logisheets_lexer = {version = "0.4.0", path = "./lexer"}
logisheets_parser = {version = "0.4.0", path = "./parser"}
logisheets_workbook = {version = "0.4.0", path = "../workbook", features = ["gents"]}
logisheets_astchecker = {version = "0.4.0", path = "./ast_checker"}
logisheets_base = {version = "0.5.0", path = "./base", features = ["gents"]}
logisheets_lexer = {version = "0.5.0", path = "./lexer"}
logisheets_parser = {version = "0.5.0", path = "./parser"}
logisheets_workbook = {version = "0.5.0", path = "../workbook", features = ["gents"]}
logisheets_astchecker = {version = "0.5.0", path = "./ast_checker"}

gents = {version = "0.8.0", optional = true}
gents_derives = {version = "0.8.0", optional = true}
Expand Down
6 changes: 3 additions & 3 deletions crates/controller/ast_checker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "logisheets_astchecker"
version = "0.4.0"
version = "0.5.0"
edition = "2018"
description = "validate the arguments in ast"
authors = ["ImJeremyHe<yiliang.he@qq.com>"]
license = "MIT"

[dependencies]
logisheets_parser = {version = "0.4.0", path = "../parser"}
logisheets_base = {version = "0.4.0", path = "../base"}
logisheets_parser = {version = "0.5.0", path = "../parser"}
logisheets_base = {version = "0.5.0", path = "../base"}
4 changes: 2 additions & 2 deletions crates/controller/base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "logisheets_base"
version = "0.4.0"
version = "0.5.0"
description = "some basic definitions for LogiSheets"
authors = ["ImJeremyHe<yiliang.he@qq.com>"]
license = "MIT"
Expand All @@ -13,7 +13,7 @@ im = "15.0.0"
serde = {version = "1.0.125", features = ["derive"]}
thiserror = "1.0.48"

logisheets_workbook = {version = "0.4.0", path = "../../workbook"}
logisheets_workbook = {version = "0.5.0", path = "../../workbook"}

gents = {version = "0.8.0", optional = true}
gents_derives = {version = "0.8.0", optional = true}
Expand Down
2 changes: 1 addition & 1 deletion crates/controller/lexer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "logisheets_lexer"
version = "0.4.0"
version = "0.5.0"
edition = "2018"
description = "the lexer for excel formula"
authors = ["ImJeremyHe<yiliang.he@qq.com>"]
Expand Down
6 changes: 3 additions & 3 deletions crates/controller/parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "logisheets_parser"
version = "0.4.0"
version = "0.5.0"
edition = "2018"
description = "the parser of excel formula"
authors = ["ImJeremyHe<yiliang.he@qq.com>"]
Expand All @@ -13,5 +13,5 @@ pest = "2.1.3"
pest_derive = "2.1.0"
chrono = "0.4.19"
regex = "1"
logisheets_lexer = {version = "0.4.0", path = "../lexer"}
logisheets_base = {version = "0.4.0", path = "../base"}
logisheets_lexer = {version = "0.5.0", path = "../lexer"}
logisheets_base = {version = "0.5.0", path = "../base"}
2 changes: 1 addition & 1 deletion crates/logiscript/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ license = "MIT"
pest = "2.7.0"
pest_derive = "2.5.6"

logisheets_controller = {version = "0.4.0", path = "../controller"}
logisheets_controller = {version = "*", path = "../controller"}
2 changes: 1 addition & 1 deletion crates/workbook/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["ImJeremyHe<yiliang.he@qq.com>"]
edition = "2018"
name = "logisheets_workbook"
version = "0.4.0"
version = "0.5.0"
license = "MIT"
description = "Tools for LogiSheets to unarchive and write .xlsx file"

Expand Down
11 changes: 8 additions & 3 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "logisheets",
"version": "1.0.0",
"version": "0.5.0",
"description": "Read and write the xlsx files",
"main": "index.js",
"scripts": {
"wasm-build": "wasm-pack build ../crates/wasms/server --out-dir ../../../packages/node/wasm --target nodejs",
"wasm-build": "wasm-pack build ../../crates/wasms/server --out-dir ../../../packages/node/wasm --target nodejs",
"link": "rm -rf ./src && cp -r ../web/src ./src",
"prepublishOnly": "yarn link && yarn wasm-build",
"prepare": "yarn link && yarn wasm-build"
Expand All @@ -22,5 +22,10 @@
"bugs": {
"url": "https://github.com/logisky/LogiSheets/issues"
},
"homepage": "https://github.com/logisky/LogiSheets"
"homepage": "https://github.com/logisky/LogiSheets",
"files": [
"wasm/*",
"src/*",
"index.ts"
]
}

0 comments on commit 56c59fe

Please sign in to comment.