Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [0.7.8][] - 2026-07-04

- Support `Container` block.

## [0.7.7][] - 2026-06-21

- Support `DataVisualization` block.
Expand Down Expand Up @@ -146,6 +150,7 @@ And the `select menu element` and the `multi-select menu element` are renewed.

- pre-release

[0.7.8]: https://github.com/kaicoh/slack-messaging/releases/v0.7.8
[0.7.7]: https://github.com/kaicoh/slack-messaging/releases/v0.7.7
[0.7.6]: https://github.com/kaicoh/slack-messaging/releases/v0.7.6
[0.7.5]: https://github.com/kaicoh/slack-messaging/releases/v0.7.5
Expand Down
2 changes: 1 addition & 1 deletion slack-messaging-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "slack-messaging-derive"
version = "0.7.7"
version = "0.7.8"
edition = "2024"
authors = ["kaicoh <sumireminami@gmail.com>"]
keywords = ["slack", "messaging", "webhook"]
Expand Down
4 changes: 2 additions & 2 deletions slack-messaging/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "slack-messaging"
version = "0.7.7"
version = "0.7.8"
authors = ["kaicoh <sumireminami@gmail.com>"]
edition = "2024"
keywords = ["slack", "messaging", "webhook"]
Expand All @@ -20,7 +20,7 @@ paste = "1.0"
regex = "1.12"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
slack-messaging-derive = { version = "0.7.7", path = "../slack-messaging-derive" }
slack-messaging-derive = { version = "0.7.8", path = "../slack-messaging-derive" }
thiserror = "2.0"

[dev-dependencies]
Expand Down
1 change: 1 addition & 0 deletions slack-messaging/src/blocks/builders.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ pub use super::actions::ActionsBuilder;
pub use super::alert::AlertBuilder;
pub use super::card::CardBuilder;
pub use super::carousel::CarouselBuilder;
pub use super::container::ContainerBuilder;
pub use super::context::ContextBuilder;
pub use super::context_actions::ContextActionsBuilder;
pub use super::data_table::DataTableBuilder;
Expand Down
Loading
Loading