1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-02-22 18:33:18 +01:00

Breaking release.

This commit is contained in:
LukeMathWalker 2021-10-27 09:51:36 +01:00
parent 352c274c8d
commit b811e065cb
3 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@ members = [".", "examples/opentelemetry", "examples/custom-root-span"]
[package]
name = "tracing-actix-web"
version = "0.4.0-beta.16"
version = "0.5.0-beta.1"
authors = ["Luca Palmieri <rust@lpalmieri.com>"]
edition = "2018"

View File

@ -35,7 +35,7 @@ Add `tracing-actix-web` to your dependencies:
```toml
[dependencies]
# ...
tracing-actix-web = "0.4.0-beta.16"
tracing-actix-web = "0.5.0-beta.1"
tracing = "0.1"
actix-web = "4.0.0-beta.10"
```
@ -48,7 +48,7 @@ actix-web = "4.0.0-beta.10"
- `opentelemetry_0_16`: same as above but using `opentelemetry` 0.16;
- `emit_event_on_error`: emit a [`tracing`] event when request processing fails with an error (enabled by default).
`tracing-actix-web` will release `0.4.0`, going out of beta, as soon as `actix-web` releases a stable `4.0.0`.
`tracing-actix-web` will release `0.5.0`, going out of beta, as soon as `actix-web` releases a stable `4.0.0`.
# Getting started

View File

@ -8,7 +8,7 @@
//! ```toml
//! [dependencies]
//! # ...
//! tracing-actix-web = "0.4.0-beta.16"
//! tracing-actix-web = "0.5.0-beta.1"
//! tracing = "0.1"
//! actix-web = "4.0.0-beta.10"
//! ```
@ -21,7 +21,7 @@
//! - `opentelemetry_0_16`: same as above but using `opentelemetry` 0.16;
//! - `emit_event_on_error`: emit a [`tracing`] event when request processing fails with an error (enabled by default).
//!
//! `tracing-actix-web` will release `0.4.0`, going out of beta, as soon as `actix-web` releases a stable `4.0.0`.
//! `tracing-actix-web` will release `0.5.0`, going out of beta, as soon as `actix-web` releases a stable `4.0.0`.
//!
//! # Getting started
//!