update version to 0.15.2
All checks were successful
Rust / build (pull_request) Successful in 1m59s

This commit is contained in:
Vinzenz Schroeter 2025-07-03 19:22:28 +02:00
parent 78dfc74cf2
commit a07a52267d
3 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View file

@ -347,7 +347,7 @@ dependencies = [
[[package]]
name = "servicepoint"
version = "0.15.1"
version = "0.15.2"
dependencies = [
"bitvec",
"bzip2",

View file

@ -1,6 +1,6 @@
[package]
name = "servicepoint"
version = "0.15.1"
version = "0.15.2"
publish = true
edition = "2021"
license = "GPL-3.0-or-later"

View file

@ -46,7 +46,7 @@ or
```toml
[dependencies]
servicepoint = "0.15.1"
servicepoint = "0.15.2"
```
## Note on stability
@ -83,7 +83,7 @@ Es an example, if you only want zlib compression:
```toml
[dependencies]
servicepoint = { version = "0.15.1", default-features = false, features = ["compression_zlib"] }
servicepoint = { version = "0.15.2", default-features = false, features = ["compression_zlib"] }
```
If you are looking at features to minimize binary size: take a look at the `tiny_announce`-example!