Skip to content

Commit

Permalink
release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fangyinc committed Nov 22, 2022
1 parent 1e4de9e commit 31855cd
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [
]

[workspace.package]
version = "0.1.0"
version = "0.1.1"

[workspace.dependencies]
cron = "0.12.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ TODO

- [x] Add executor plugin system for dag and task.
- [x] Support async function and routine.
- [ ] Use github CI/CD
- [x] Use github CI/CD
- [ ] Save and load task from dynamic link libraries(ffi)
- [ ] Optimization task design for better expansion
- [ ] Multi-language support.
Expand Down
4 changes: 2 additions & 2 deletions bronze/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bronzeflow"
version = "0.1.0"
version = "0.1.1"
authors = ["fangyinc <[email protected]>"]
edition = "2021"
keywords = ["scheduler", "workflow"]
Expand All @@ -17,4 +17,4 @@ async = ["bronzeflow-core/async"]
async_tokio = ["bronzeflow-core/async_tokio"]

[dependencies]
bronzeflow-core = { version = "0.1.0", path = "bronzeflow-core", default-features = false}
bronzeflow-core = { version = "0.1.1", path = "bronzeflow-core", default-features = false}
4 changes: 2 additions & 2 deletions bronze/bronzeflow-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ cron.workspace = true
chrono.workspace = true
futures.workspace = true

bronzeflow-utils = { version = "0.1.0", path = "../bronzeflow-utils" }
bronzeflow-time = { version = "0.1.0", path = "../bronzeflow-time" }
bronzeflow-utils = { version = "0.1.1", path = "../bronzeflow-utils" }
bronzeflow-time = { version = "0.1.1", path = "../bronzeflow-time" }

tokio = { version = "1.21.2", features = ["full"] }
cfg-if = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion bronze/bronzeflow-time/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ description = "Bronzeflow-Time: a common internal time crate for bronzeflow(inte
cron.workspace = true
chrono.workspace = true
anyhow.workspace = true
bronzeflow-utils = { version = "0.1.0", path = "../bronzeflow-utils" }
bronzeflow-utils = { version = "0.1.1", path = "../bronzeflow-utils" }

0 comments on commit 31855cd

Please sign in to comment.