Skip to content

Commit

Permalink
chore: bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
loyd committed Mar 7, 2023
1 parent bb2a8e7 commit 0fbe84e
Show file tree
Hide file tree
Showing 12 changed files with 42 additions and 39 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]).
Expand Down Expand Up @@ -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
Expand Down
7 changes: 3 additions & 4 deletions elfo-configurer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
[package]
name = "elfo-configurer"
version = "0.1.12"
version = "0.1.13"
description = "Loads and distributes configs across the elfo system"

authors.workspace = true
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"
Expand Down
6 changes: 3 additions & 3 deletions elfo-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions elfo-dumper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "elfo-dumper"
version = "0.1.7"
version = "0.1.8"
description = "Dumps messages on disk"

authors.workspace = true
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"] }
Expand Down
8 changes: 4 additions & 4 deletions elfo-logger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "elfo-logger"
version = "0.1.8"
version = "0.1.9"
description = "Logging subsystem"

authors.workspace = true
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"
Expand Down
2 changes: 1 addition & 1 deletion elfo-macros-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 3 additions & 2 deletions elfo-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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" }
8 changes: 4 additions & 4 deletions elfo-pinger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "elfo-pinger"
version = "0.1.1"
version = "0.1.2"
description = "Pings groups of the elfo system"

authors.workspace = true
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"] }
Expand Down
6 changes: 3 additions & 3 deletions elfo-telemeter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "elfo-telemeter"
version = "0.1.10"
version = "0.1.11"
description = "A telemeter collecting metrics"

authors.workspace = true
Expand All @@ -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"] }
Expand Down
6 changes: 3 additions & 3 deletions elfo-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "elfo-test"
version = "0.1.19"
version = "0.1.20"
description = "Test utils"

authors.workspace = true
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"
Expand Down
2 changes: 1 addition & 1 deletion elfo-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "elfo-utils"
version = "0.2.0"
version = "0.2.1"
description = "Utils"

authors.workspace = true
Expand Down
18 changes: 9 additions & 9 deletions elfo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <pavelko95@gmail.com>"]
Expand All @@ -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" }
Expand Down

0 comments on commit 0fbe84e

Please sign in to comment.