chore(bytestring): prepare release 1.5.0

This commit is contained in:
Rob Ede 2025-09-15 09:13:23 +01:00
parent da9db224c4
commit d22774f1b7
No known key found for this signature in database
GPG Key ID: F5E3FCAA33CBF062
5 changed files with 13 additions and 8 deletions

View File

@ -2,6 +2,7 @@ version: "0.2"
words:
- actix
- addrs
- bytestring
- clippy
- deque
- itertools
@ -13,6 +14,7 @@ words:
- rcgen
- Rustls
- rustup
- serde
- spki
- uring
- webpki

2
Cargo.lock generated
View File

@ -325,7 +325,7 @@ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
[[package]]
name = "bytestring"
version = "1.4.0"
version = "1.5.0"
dependencies = [
"ahash",
"bytes",

View File

@ -2,6 +2,9 @@
## Unreleased
## 1.5.0
- Migrate `serde` dependency to `serde_core`.
- Minimum supported Rust version (MSRV) is now 1.75.
- Switch `serde` to `serde_core`

View File

@ -1,6 +1,6 @@
[package]
name = "bytestring"
version = "1.4.0"
version = "1.5.0"
description = "A UTF-8 encoded read-only string using `Bytes` as storage"
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Rob Ede <robjtede@icloud.com>"]
keywords = ["string", "bytes", "utf8", "web", "bytestring"]
@ -14,17 +14,17 @@ rust-version.workspace = true
[package.metadata.cargo_check_external_types]
allowed_external_types = ["bytes::*", "serde::*"]
[features]
serde = ["dep:serde_core"]
[dependencies]
bytes = { version = "1.2", default-features = false }
serde_core = { version = "1.0.221", optional = true }
serde_core = { version = "1", optional = true }
[dev-dependencies]
ahash = { version = "0.8", default-features = false }
serde_json = "1"
static_assertions = "1.1"
[features]
serde = ["dep:serde_core"]
[lints]
workspace = true

View File

@ -5,11 +5,11 @@
<!-- prettier-ignore-start -->
[![crates.io](https://img.shields.io/crates/v/bytestring?label=latest)](https://crates.io/crates/bytestring)
[![Documentation](https://docs.rs/bytestring/badge.svg?version=1.4.0)](https://docs.rs/bytestring/1.4.0)
[![Documentation](https://docs.rs/bytestring/badge.svg?version=1.5.0)](https://docs.rs/bytestring/1.5.0)
[![Version](https://img.shields.io/badge/rustc-1.52+-ab6000.svg)](https://blog.rust-lang.org/2021/05/06/Rust-1.52.0.html)
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/bytestring.svg)
<br />
[![Dependency Status](https://deps.rs/crate/bytestring/1.4.0/status.svg)](https://deps.rs/crate/bytestring/1.4.0)
[![Dependency Status](https://deps.rs/crate/bytestring/1.5.0/status.svg)](https://deps.rs/crate/bytestring/1.5.0)
![Download](https://img.shields.io/crates/d/bytestring.svg)
[![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/NWpN5mmg3x)