From 0fbe84e05c3bfea63b1e20e8fd76a369fddeef79 Mon Sep 17 00:00:00 2001 From: Paul Loyd Date: Tue, 7 Mar 2023 11:14:45 +0800 Subject: [PATCH] chore: bump versions --- CHANGELOG.md | 5 ++++- elfo-configurer/Cargo.toml | 7 +++---- elfo-core/Cargo.toml | 6 +++--- elfo-dumper/Cargo.toml | 8 ++++---- elfo-logger/Cargo.toml | 8 ++++---- elfo-macros-impl/Cargo.toml | 2 +- elfo-macros/Cargo.toml | 5 +++-- elfo-pinger/Cargo.toml | 8 ++++---- elfo-telemeter/Cargo.toml | 6 +++--- elfo-test/Cargo.toml | 6 +++--- elfo-utils/Cargo.toml | 2 +- elfo/Cargo.toml | 18 +++++++++--------- 12 files changed, 42 insertions(+), 39 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37acd48e..3c27f6ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [0.1.40] - 2023-03-07 ### Added - dumper: add `Truncate` mode ([#85]). - dumper: add `rules` section to the config ([#85]). @@ -392,7 +394,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Feuer Frei! -[unreleased]: https://github.com/elfo-rs/elfo/compare/elfo-0.1.39...HEAD +[unreleased]: https://github.com/elfo-rs/elfo/compare/elfo-0.1.40...HEAD +[0.1.40]: https://github.com/elfo-rs/elfo/compare/elfo-0.1.39...elfo-0.1.40 [0.1.39]: https://github.com/elfo-rs/elfo/compare/elfo-0.1.38...elfo-0.1.39 [0.1.38]: https://github.com/elfo-rs/elfo/compare/elfo-0.1.37...elfo-0.1.38 [0.1.37]: https://github.com/elfo-rs/elfo/compare/elfo-0.1.36...elfo-0.1.37 diff --git a/elfo-configurer/Cargo.toml b/elfo-configurer/Cargo.toml index b913780c..c985740a 100644 --- a/elfo-configurer/Cargo.toml +++ b/elfo-configurer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elfo-configurer" -version = "0.1.12" +version = "0.1.13" description = "Loads and distributes configs across the elfo system" authors.workspace = true @@ -8,11 +8,10 @@ license.workspace = true edition.workspace = true [dependencies] -elfo-macros = { version = "0.1.14", path = "../elfo-macros" } -elfo-core = { version = "0.1.33", path = "../elfo-core", features = ["unstable"] } +elfo-macros = { version = "0.1.15", path = "../elfo-macros" } +elfo-core = { version = "0.1.35", path = "../elfo-core", features = ["unstable"] } toml = "0.7" - tokio = { version = "1", features = ["fs"] } serde = { version = "1.0.120", features = ["derive", "rc"] } serde-value = "0.7.0" diff --git a/elfo-core/Cargo.toml b/elfo-core/Cargo.toml index e32bcdce..f14926a7 100644 --- a/elfo-core/Cargo.toml +++ b/elfo-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elfo-core" -version = "0.1.34" +version = "0.1.35" description = "The core of the system" authors.workspace = true @@ -13,8 +13,8 @@ unstable = [] unstable-stuck-detection = ["dep:thread_local"] [dependencies] -elfo-macros = { version = "0.1.14", path = "../elfo-macros" } -elfo-utils = { version = "0.2.0", path = "../elfo-utils" } +elfo-macros = { version = "0.1.15", path = "../elfo-macros" } +elfo-utils = { version = "0.2.1", path = "../elfo-utils" } tokio = { version = "1.16", features = ["rt", "sync", "time", "signal", "macros"] } tokio-util = "0.7" diff --git a/elfo-dumper/Cargo.toml b/elfo-dumper/Cargo.toml index bc0fe4b5..9a545f9c 100644 --- a/elfo-dumper/Cargo.toml +++ b/elfo-dumper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elfo-dumper" -version = "0.1.7" +version = "0.1.8" description = "Dumps messages on disk" authors.workspace = true @@ -8,9 +8,9 @@ license.workspace = true edition.workspace = true [dependencies] -elfo-macros = { version = "0.1.14", path = "../elfo-macros" } -elfo-core = { version = "0.1.33", path = "../elfo-core", features = ["unstable"] } -elfo-utils = { version = "0.2.0", path = "../elfo-utils" } +elfo-macros = { version = "0.1.15", path = "../elfo-macros" } +elfo-core = { version = "0.1.35", path = "../elfo-core", features = ["unstable"] } +elfo-utils = { version = "0.2.1", path = "../elfo-utils" } tokio = { version = "1", features = ["fs", "io-util", "sync"] } serde = { version = "1.0.120", features = ["derive"] } diff --git a/elfo-logger/Cargo.toml b/elfo-logger/Cargo.toml index 99e31ddd..d8b7d4fe 100644 --- a/elfo-logger/Cargo.toml +++ b/elfo-logger/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elfo-logger" -version = "0.1.8" +version = "0.1.9" description = "Logging subsystem" authors.workspace = true @@ -8,9 +8,9 @@ license.workspace = true edition.workspace = true [dependencies] -elfo-macros = { version = "0.1.14", path = "../elfo-macros" } -elfo-core = { version = "0.1.33", path = "../elfo-core", features = ["unstable"] } -elfo-utils = { version = "0.2.0", path = "../elfo-utils" } +elfo-macros = { version = "0.1.15", path = "../elfo-macros" } +elfo-core = { version = "0.1.35", path = "../elfo-core", features = ["unstable"] } +elfo-utils = { version = "0.2.1", path = "../elfo-utils" } derive_more = "0.99.11" futures-intrusive = "0.5" diff --git a/elfo-macros-impl/Cargo.toml b/elfo-macros-impl/Cargo.toml index 8f97cac4..9302a913 100644 --- a/elfo-macros-impl/Cargo.toml +++ b/elfo-macros-impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elfo-macros-impl" -version = "0.1.0" +version = "0.1.1" description = "Macros for matching and deriving messages, implementation internals" authors.workspace = true diff --git a/elfo-macros/Cargo.toml b/elfo-macros/Cargo.toml index 03856999..d4fda2e9 100644 --- a/elfo-macros/Cargo.toml +++ b/elfo-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elfo-macros" -version = "0.1.14" +version = "0.1.15" description = "Macros for matching and deriving messages" authors.workspace = true @@ -11,5 +11,6 @@ edition.workspace = true proc-macro = true [dependencies] +elfo-macros-impl = { version = "0.1.1", path = "../elfo-macros-impl" } + syn = { version = "1.0.60", features = ["parsing", "printing"] } -elfo-macros-impl = { version = "0.1.0", path = "../elfo-macros-impl" } diff --git a/elfo-pinger/Cargo.toml b/elfo-pinger/Cargo.toml index 7f3fccbd..ba13c3ff 100644 --- a/elfo-pinger/Cargo.toml +++ b/elfo-pinger/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elfo-pinger" -version = "0.1.1" +version = "0.1.2" description = "Pings groups of the elfo system" authors.workspace = true @@ -8,9 +8,9 @@ license.workspace = true edition.workspace = true [dependencies] -elfo-macros = { version = "0.1", path = "../elfo-macros" } -elfo-core = { version = "0.1.26", path = "../elfo-core", features = ["unstable"] } -elfo-utils = { version = "0.2.0", path = "../elfo-utils" } +elfo-macros = { version = "0.1.15", path = "../elfo-macros" } +elfo-core = { version = "0.1.35", path = "../elfo-core", features = ["unstable"] } +elfo-utils = { version = "0.2.1", path = "../elfo-utils" } tokio = { version = "1", features = ["time"] } serde = { version = "1.0.120", features = ["derive"] } diff --git a/elfo-telemeter/Cargo.toml b/elfo-telemeter/Cargo.toml index 188d2bf8..00caa55f 100644 --- a/elfo-telemeter/Cargo.toml +++ b/elfo-telemeter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elfo-telemeter" -version = "0.1.10" +version = "0.1.11" description = "A telemeter collecting metrics" authors.workspace = true @@ -11,8 +11,8 @@ edition.workspace = true unstable = [] [dependencies] -elfo-macros = { version = "0.1.14", path = "../elfo-macros" } -elfo-core = { version = "0.1.33", path = "../elfo-core", features = ["unstable"] } # TODO: do not need +elfo-macros = { version = "0.1.15", path = "../elfo-macros" } +elfo-core = { version = "0.1.35", path = "../elfo-core", features = ["unstable"] } # TODO: do not need tokio = "1" hyper = { version = "0.14", default-features = false, features = ["server", "tcp", "http1"] } diff --git a/elfo-test/Cargo.toml b/elfo-test/Cargo.toml index ca696d38..55ea48e6 100644 --- a/elfo-test/Cargo.toml +++ b/elfo-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elfo-test" -version = "0.1.19" +version = "0.1.20" description = "Test utils" authors.workspace = true @@ -8,8 +8,8 @@ license.workspace = true edition.workspace = true [dependencies] -elfo-macros = { version = "0.1.14", path = "../elfo-macros" } -elfo-core = { version = "0.1.33", path = "../elfo-core", features = ["test-util"] } +elfo-macros = { version = "0.1.15", path = "../elfo-macros" } +elfo-core = { version = "0.1.35", path = "../elfo-core", features = ["test-util"] } elfo-configurer = { version = "0.1", path = "../elfo-configurer" } tokio = "1" diff --git a/elfo-utils/Cargo.toml b/elfo-utils/Cargo.toml index ef82ee1d..2c425e9a 100644 --- a/elfo-utils/Cargo.toml +++ b/elfo-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elfo-utils" -version = "0.2.0" +version = "0.2.1" description = "Utils" authors.workspace = true diff --git a/elfo/Cargo.toml b/elfo/Cargo.toml index 2bfb262e..3b658603 100644 --- a/elfo/Cargo.toml +++ b/elfo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elfo" -version = "0.1.39" +version = "0.1.40" description = "Your next actor system" keywords = ["actor", "distributed", "tokio"] authors = ["Paul Loyd "] @@ -26,14 +26,14 @@ unstable = ["elfo-core/unstable", "elfo-telemeter/unstable" ] unstable-stuck-detection = ["elfo-core/unstable-stuck-detection"] [dependencies] -elfo-core = { version = "0.1.34", path = "../elfo-core" } -elfo-macros = { version = "0.1.14", path = "../elfo-macros" } -elfo-test = { version = "0.1.19", path = "../elfo-test", optional = true } -elfo-configurer = { version = "0.1.12", path = "../elfo-configurer", optional = true } -elfo-logger = { version = "0.1.8", path = "../elfo-logger", optional = true } -elfo-telemeter = { version = "0.1.10", path = "../elfo-telemeter", optional = true } -elfo-dumper = { version = "0.1.7", path = "../elfo-dumper", optional = true } -elfo-pinger = { version = "0.1.1", path = "../elfo-pinger", optional = true } +elfo-core = { version = "0.1.35", path = "../elfo-core" } +elfo-macros = { version = "0.1.15", path = "../elfo-macros" } +elfo-test = { version = "0.1.20", path = "../elfo-test", optional = true } +elfo-configurer = { version = "0.1.13", path = "../elfo-configurer", optional = true } +elfo-logger = { version = "0.1.9", path = "../elfo-logger", optional = true } +elfo-telemeter = { version = "0.1.11", path = "../elfo-telemeter", optional = true } +elfo-dumper = { version = "0.1.8", path = "../elfo-dumper", optional = true } +elfo-pinger = { version = "0.1.2", path = "../elfo-pinger", optional = true } [dev-dependencies] elfo-test = { version = "0.1", path = "../elfo-test" }