diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bd6df0cc..8f08c4abf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## 0.13.0 - 2024-10-29 + +Changelog bankruptcy declared. + ## 0.12.0 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()`). diff --git a/bytes/Cargo.toml b/bytes/Cargo.toml index 2d9b8faab..1f3baf986 100644 --- a/bytes/Cargo.toml +++ b/bytes/Cargo.toml @@ -10,4 +10,4 @@ documentation = "https://docs.rs/timely/" homepage = "https://github.com/TimelyDataflow/timely-dataflow" repository = "https://github.com/TimelyDataflow/timely-dataflow.git" keywords = ["timely", "dataflow", "bytes"] -license = "MIT" \ No newline at end of file +license = "MIT" diff --git a/communication/Cargo.toml b/communication/Cargo.toml index f338ee824..ad304c5bf 100644 --- a/communication/Cargo.toml +++ b/communication/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_communication" -version = "0.12.0" +version = "0.13.0" authors = ["Frank McSherry "] description = "Communication layer for timely dataflow" edition.workspace = true diff --git a/logging/Cargo.toml b/logging/Cargo.toml index 9ed7b3b35..9b57c64a5 100644 --- a/logging/Cargo.toml +++ b/logging/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timely_logging" -version = "0.12.0" +version = "0.12.1" authors = ["Frank McSherry "] description = "Common timely logging infrastructure" edition.workspace = true diff --git a/timely/Cargo.toml b/timely/Cargo.toml index 5deb5fed8..079ad51c7 100644 --- a/timely/Cargo.toml +++ b/timely/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "timely" -version = "0.12.0" +version = "0.13.0" authors = ["Frank McSherry "] readme = "../README.md" edition.workspace = true @@ -24,7 +24,7 @@ bincode = { version = "1.0" } serde = { version = "1.0", features = ["derive"] } timely_bytes = { path = "../bytes", version = "0.12" } timely_logging = { path = "../logging", version = "0.12" } -timely_communication = { path = "../communication", version = "0.12", default-features = false } +timely_communication = { path = "../communication", version = "0.13", default-features = false } timely_container = { path = "../container", version = "0.12" } crossbeam-channel = "0.5.0" smallvec = { version = "1.13.2", features = ["serde", "const_generics"] }