Skip to content

Commit ba17477

Browse files
chore: release (#594)
* chore: release * Remove incorrect changelog --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Frank McSherry <[email protected]>
1 parent f1e4573 commit ba17477

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## 0.13.0 - 2024-10-29
6+
7+
Changelog bankruptcy declared.
8+
59
## 0.12.0
610

711
The `Timestamp` trait has a new method `minimim()` that replaces Timely's use of `Default::default()` for default capabilities. The most pressing reason for this is the use of signed integers for timestamps, where Timely would effectively prevent the use of negative numbers by providing the default value of zero for capabilities. This should not have reduced any functionality, but might provide surprising output for programs that use integer timestamps and do not first advance timestamps (the tidy `0` will be replaced with `_::min_value()`).

bytes/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ documentation = "https://docs.rs/timely/"
1010
homepage = "https://github.com/TimelyDataflow/timely-dataflow"
1111
repository = "https://github.com/TimelyDataflow/timely-dataflow.git"
1212
keywords = ["timely", "dataflow", "bytes"]
13-
license = "MIT"
13+
license = "MIT"

communication/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "timely_communication"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
authors = ["Frank McSherry <[email protected]>"]
55
description = "Communication layer for timely dataflow"
66
edition.workspace = true

logging/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "timely_logging"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
authors = ["Frank McSherry <[email protected]>"]
55
description = "Common timely logging infrastructure"
66
edition.workspace = true

timely/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "timely"
4-
version = "0.12.0"
4+
version = "0.13.0"
55
authors = ["Frank McSherry <[email protected]>"]
66
readme = "../README.md"
77
edition.workspace = true
@@ -24,7 +24,7 @@ bincode = { version = "1.0" }
2424
serde = { version = "1.0", features = ["derive"] }
2525
timely_bytes = { path = "../bytes", version = "0.12" }
2626
timely_logging = { path = "../logging", version = "0.12" }
27-
timely_communication = { path = "../communication", version = "0.12", default-features = false }
27+
timely_communication = { path = "../communication", version = "0.13", default-features = false }
2828
timely_container = { path = "../container", version = "0.12" }
2929
crossbeam-channel = "0.5.0"
3030
smallvec = { version = "1.13.2", features = ["serde", "const_generics"] }

0 commit comments

Comments
 (0)