Skip to content

Commit

Permalink
chore: release (#618)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Jan 16, 2025
1 parent 679e939 commit c429faf
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

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

## [0.16.1](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.16.0...timely-v0.16.1) - 2025-01-16

### Other

- Avoid allocation in progcaster ([#622](https://github.com/TimelyDataflow/timely-dataflow/pull/622))
- Log action can distinguish data from flush ([#619](https://github.com/TimelyDataflow/timely-dataflow/pull/619))
- give_container for arbitrary container builders ([#621](https://github.com/TimelyDataflow/timely-dataflow/pull/621))
- Add an is_empty check before retrieving elapsed time. ([#620](https://github.com/TimelyDataflow/timely-dataflow/pull/620))
- Correct documentation for execute_from_args ([#617](https://github.com/TimelyDataflow/timely-dataflow/pull/617))

## [0.16.0](https://github.com/TimelyDataflow/timely-dataflow/compare/timely-v0.15.1...timely-v0.16.0) - 2025-01-09

### Other
Expand Down
4 changes: 2 additions & 2 deletions communication/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "timely_communication"
version = "0.16.1"
version = "0.16.2"
authors = ["Frank McSherry <[email protected]>"]
description = "Communication layer for timely dataflow"
edition.workspace = true
Expand All @@ -22,6 +22,6 @@ getopts = { version = "0.2.21", optional = true }
byteorder = "1.5"
serde = { version = "1.0", features = ["derive"] }
timely_bytes = { path = "../bytes", version = "0.12" }
timely_container = { path = "../container", version = "0.13.1" }
timely_container = { path = "../container", version = "0.14.0" }
timely_logging = { path = "../logging", version = "0.13" }
crossbeam-channel = "0.5"
2 changes: 1 addition & 1 deletion container/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "timely_container"
version = "0.13.1"
version = "0.14.0"
description = "Container abstractions for Timely"
license = "MIT"
edition.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions logging/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "timely_logging"
version = "0.13.1"
version = "0.13.2"
authors = ["Frank McSherry <[email protected]>"]
description = "Common timely logging infrastructure"
edition.workspace = true
Expand All @@ -12,4 +12,4 @@ keywords = ["timely", "dataflow", "logging"]
license = "MIT"

[dependencies]
timely_container = { version = "0.13.1", path = "../container" }
timely_container = { version = "0.14.0", path = "../container" }
4 changes: 2 additions & 2 deletions timely/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "timely"
version = "0.16.0"
version = "0.16.1"
authors = ["Frank McSherry <[email protected]>"]
readme = "../README.md"
edition.workspace = true
Expand All @@ -27,7 +27,7 @@ serde = { version = "1.0", features = ["derive"] }
timely_bytes = { path = "../bytes", version = "0.12" }
timely_logging = { path = "../logging", version = "0.13" }
timely_communication = { path = "../communication", version = "0.16", default-features = false }
timely_container = { path = "../container", version = "0.13" }
timely_container = { path = "../container", version = "0.14" }
crossbeam-channel = "0.5"
smallvec = { version = "1.13.2", features = ["serde", "const_generics"] }

Expand Down

0 comments on commit c429faf

Please sign in to comment.