Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.8.0 bump #250

Merged
merged 1 commit into from
Jan 7, 2025
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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cloudevents-sdk"
version = "0.9.0"
version = "0.8.0"
authors = ["Francesco Guardiani <[email protected]>"]
license-file = "LICENSE"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ enabling your Protocol Binding of choice:

```toml
[dependencies]
cloudevents-sdk = { version = "0.9.0" }
cloudevents-sdk = { version = "0.8.0" }
```

Now you can start creating events:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@
//! only the module associated with the Protocol Binding you need:
//!
//! - `actix`: Enables the [`binding::actix`] protocol binding module. This
//! extends the [`actix_web::HttpRequest`] with a

Check warning on line 40 in src/lib.rs

View workflow job for this annotation

GitHub Actions / Rust

doc list item without indentation
//! [`to_event`](binding::actix::HttpRequestExt::to_event) function, the

Check warning on line 41 in src/lib.rs

View workflow job for this annotation

GitHub Actions / Rust

doc list item without indentation
//! [`actix_web::HttpResponseBuilder`] with an

Check warning on line 42 in src/lib.rs

View workflow job for this annotation

GitHub Actions / Rust

doc list item without indentation
//! [`event`](binding::actix::HttpResponseBuilderExt::event) function,

Check warning on line 43 in src/lib.rs

View workflow job for this annotation

GitHub Actions / Rust

doc list item without indentation
//! and implementations for [`actix_web::FromRequest`] and

Check warning on line 44 in src/lib.rs

View workflow job for this annotation

GitHub Actions / Rust

doc list item without indentation
//! [`actix_web::Responder`] in order to take advantage of actix-web's
//! [Extractors] and [Responders]
//! - `reqwest`: Enables the [`binding::reqwest`] protocol binding module.
Expand All @@ -54,7 +54,7 @@
//! [Extractors]: https://actix.rs/docs/extractors/
//! [Responders]: https://actix.rs/docs/handlers/

#![doc(html_root_url = "https://docs.rs/cloudevents-sdk/0.9.0")]
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk/0.8.0")]
#![deny(rustdoc::broken_intra_doc_links)]
#![cfg_attr(docsrs, feature(doc_cfg))] // Show feature gate in doc

Expand Down
Loading