Skip to content

Commit a4955e8

Browse files
committed
Bump the version to 0.4.3.
1 parent 959820b commit a4955e8

File tree

4 files changed

+23
-18
lines changed

4 files changed

+23
-18
lines changed

CHANGES.md

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.4.3] - 2024-11-15
9+
### Fixed
10+
- Feature flags
11+
812
## [0.4.2] - 2024-11-15
913
### Added
1014
- `DecodeJson` block
@@ -64,6 +68,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6468

6569
## [0.1.0] - 2024-08-20
6670

71+
[0.4.3]: https://github.com/AsimovPlatform/protoflow/compare/0.4.2...0.4.3
6772
[0.4.2]: https://github.com/AsimovPlatform/protoflow/compare/0.4.1...0.4.2
6873
[0.4.1]: https://github.com/AsimovPlatform/protoflow/compare/0.4.0...0.4.1
6974
[0.4.0]: https://github.com/AsimovPlatform/protoflow/compare/0.3.1...0.4.0

Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ default-members = ["lib/*"]
66
resolver = "2"
77

88
[workspace.package]
9-
version = "0.4.2"
9+
version = "0.4.3"
1010
authors = ["Arto Bendiken"]
1111
edition = "2021"
1212
rust-version = "1.70"
@@ -22,14 +22,14 @@ publish = true
2222

2323
[workspace.dependencies]
2424
cfg_aliases = "0.2"
25-
protoflow = { version = "=0.4.2", default-features = false }
26-
protoflow-blocks = { version = "=0.4.2", default-features = false }
27-
protoflow-core = { version = "=0.4.2", default-features = false }
28-
protoflow-crossbeam = { version = "=0.4.2", default-features = false }
29-
protoflow-derive = { version = "=0.4.2", default-features = false }
30-
protoflow-flume = { version = "=0.4.2", default-features = false }
31-
protoflow-syntax = { version = "=0.4.2", default-features = false }
32-
protoflow-zeromq = { version = "=0.4.2", default-features = false }
25+
protoflow = { version = "=0.4.3", default-features = false }
26+
protoflow-blocks = { version = "=0.4.3", default-features = false }
27+
protoflow-core = { version = "=0.4.3", default-features = false }
28+
protoflow-crossbeam = { version = "=0.4.3", default-features = false }
29+
protoflow-derive = { version = "=0.4.3", default-features = false }
30+
protoflow-flume = { version = "=0.4.3", default-features = false }
31+
protoflow-syntax = { version = "=0.4.3", default-features = false }
32+
protoflow-zeromq = { version = "=0.4.3", default-features = false }
3333
shadow-rs = { version = "0.26", features = ["tzdb"], default-features = false }
3434

3535
[patch.crates-io]

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.2
1+
0.4.3

lib/protoflow/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ default = ["all", "cli", "std"]
2121
all = ["blocks", "derive", "rand", "serde", "sysml", "tracing"]
2222
beta = ["unstable"] # deprecated
2323
blocks = ["dep:protoflow-blocks"]
24-
cli = ["std", "dep:clap", "dep:clientele"]
24+
cli = ["std", "syntax", "dep:clap", "dep:clientele"]
2525
crossbeam = ["dep:protoflow-crossbeam"]
2626
derive = ["dep:protoflow-derive"]
2727
flume = ["dep:protoflow-flume"]
@@ -72,13 +72,13 @@ clientele = { version = "0.2", default-features = false, features = [
7272
"wild",
7373
], optional = true }
7474
error-stack = { version = "0.5", default-features = false }
75-
protoflow-blocks = { version = "=0.4.2", default-features = false, optional = true }
76-
protoflow-core = { version = "=0.4.2", default-features = false }
77-
protoflow-crossbeam = { version = "=0.4.2", default-features = false, optional = true }
78-
protoflow-derive = { version = "=0.4.2", optional = true }
79-
protoflow-flume = { version = "=0.4.2", default-features = false, optional = true }
80-
protoflow-syntax = { version = "=0.4.2", default-features = false, optional = true }
81-
protoflow-zeromq = { version = "=0.4.2", default-features = false, optional = true }
75+
protoflow-blocks = { version = "=0.4.3", default-features = false, optional = true }
76+
protoflow-core = { version = "=0.4.3", default-features = false }
77+
protoflow-crossbeam = { version = "=0.4.3", default-features = false, optional = true }
78+
protoflow-derive = { version = "=0.4.3", optional = true }
79+
protoflow-flume = { version = "=0.4.3", default-features = false, optional = true }
80+
protoflow-syntax = { version = "=0.4.3", default-features = false, optional = true }
81+
protoflow-zeromq = { version = "=0.4.3", default-features = false, optional = true }
8282
tracing = { version = "0.1", default-features = false, optional = true }
8383

8484
[dev-dependencies]

0 commit comments

Comments
 (0)