Skip to content

Commit 7f8bb3f

Browse files
release: 0.48.0
1 parent 352cfb8 commit 7f8bb3f

21 files changed

Lines changed: 66 additions & 66 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.48.0
44

55
### Breaking Changes
66

Cargo.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sentry-actix/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-actix"
3-
version = "0.47.0"
3+
version = "0.48.0"
44
authors = { workspace = true }
55
license = "MIT"
66
readme = "README.md"
@@ -20,7 +20,7 @@ release-health = ["sentry-core/release-health"]
2020
actix-web = { version = "4", default-features = false }
2121
bytes = "1.11.1"
2222
futures-util = { version = "0.3.5", default-features = false }
23-
sentry-core = { version = "0.47.0", path = "../sentry-core", default-features = false, features = [
23+
sentry-core = { version = "0.48.0", path = "../sentry-core", default-features = false, features = [
2424
"client",
2525
] }
2626
actix-http = "3.12"

sentry-anyhow/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-anyhow"
3-
version = "0.47.0"
3+
version = "0.48.0"
44
authors = { workspace = true }
55
license = "MIT"
66
readme = "README.md"
@@ -17,8 +17,8 @@ default = ["backtrace"]
1717
backtrace = []
1818

1919
[dependencies]
20-
sentry-backtrace = { version = "0.47.0", path = "../sentry-backtrace" }
21-
sentry-core = { version = "0.47.0", path = "../sentry-core" }
20+
sentry-backtrace = { version = "0.48.0", path = "../sentry-backtrace" }
21+
sentry-core = { version = "0.48.0", path = "../sentry-core" }
2222
anyhow = "1.0.77"
2323

2424
[dev-dependencies]

sentry-backtrace/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-backtrace"
3-
version = "0.47.0"
3+
version = "0.48.0"
44
authors = { workspace = true }
55
license = "MIT"
66
readme = "README.md"
@@ -18,4 +18,4 @@ regex = { version = "1.5.5", default-features = false, features = [
1818
"std",
1919
"unicode-perl",
2020
] }
21-
sentry-core = { version = "0.47.0", path = "../sentry-core" }
21+
sentry-core = { version = "0.48.0", path = "../sentry-core" }

sentry-contexts/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-contexts"
3-
version = "0.47.0"
3+
version = "0.48.0"
44
authors = { workspace = true }
55
license = "MIT"
66
readme = "README.md"
@@ -14,7 +14,7 @@ edition = { workspace = true }
1414
rust-version = { workspace = true }
1515

1616
[dependencies]
17-
sentry-core = { version = "0.47.0", path = "../sentry-core" }
17+
sentry-core = { version = "0.48.0", path = "../sentry-core" }
1818
libc = "0.2.66"
1919
hostname = "0.4"
2020

sentry-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-core"
3-
version = "0.47.0"
3+
version = "0.48.0"
44
authors = { workspace = true }
55
license = "MIT"
66
readme = "README.md"
@@ -30,7 +30,7 @@ metrics = []
3030
[dependencies]
3131
log = { version = "0.4.8", optional = true, features = ["std"] }
3232
rand = { version = "0.9.3", optional = true }
33-
sentry-types = { version = "0.47.0", path = "../sentry-types" }
33+
sentry-types = { version = "0.48.0", path = "../sentry-types" }
3434
serde = { version = "1.0.104", features = ["derive"] }
3535
serde_json = { version = "1.0.46" }
3636
url = { version = "2.1.1" }

sentry-core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ functionality.
9999
[Sentry]: https://sentry.io/
100100
[`sentry`]: https://crates.io/crates/sentry
101101
[Unified API]: https://develop.sentry.dev/sdk/unified-api/
102-
[`test`]: https://docs.rs/sentry-core/0.47.0/sentry_core/test/index.html
102+
[`test`]: https://docs.rs/sentry-core/0.48.0/sentry_core/test/index.html
103103

104104
## Resources
105105

sentry-debug-images/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-debug-images"
3-
version = "0.47.0"
3+
version = "0.48.0"
44
authors = { workspace = true }
55
license = "MIT"
66
readme = "README.md"
@@ -14,4 +14,4 @@ rust-version = { workspace = true }
1414

1515
[dependencies]
1616
findshlibs = "=0.10.2"
17-
sentry-core = { version = "0.47.0", path = "../sentry-core" }
17+
sentry-core = { version = "0.48.0", path = "../sentry-core" }

sentry-debug-images/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ let integration = sentry_debug_images::DebugImagesIntegration::new()
2222
.filter(|event| event.level >= Level::Warning);
2323
```
2424

25-
[`Event`]: https://docs.rs/sentry-debug-images/0.47.0/sentry_debug_images/sentry_core::protocol::Event
25+
[`Event`]: https://docs.rs/sentry-debug-images/0.48.0/sentry_debug_images/sentry_core::protocol::Event
2626

2727
## Resources
2828

0 commit comments

Comments
 (0)