Skip to content

Commit d22774f

Browse files
committed
chore(bytestring): prepare release 1.5.0
1 parent da9db22 commit d22774f

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

.cspell.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ version: "0.2"
22
words:
33
- actix
44
- addrs
5+
- bytestring
56
- clippy
67
- deque
78
- itertools
@@ -13,6 +14,7 @@ words:
1314
- rcgen
1415
- Rustls
1516
- rustup
17+
- serde
1618
- spki
1719
- uring
1820
- webpki

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bytestring/CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Unreleased
44

5+
## 1.5.0
6+
7+
- Migrate `serde` dependency to `serde_core`.
58
- Minimum supported Rust version (MSRV) is now 1.75.
69
- Switch `serde` to `serde_core`
710

bytestring/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bytestring"
3-
version = "1.4.0"
3+
version = "1.5.0"
44
description = "A UTF-8 encoded read-only string using `Bytes` as storage"
55
authors = ["Nikolay Kim <[email protected]>", "Rob Ede <[email protected]>"]
66
keywords = ["string", "bytes", "utf8", "web", "bytestring"]
@@ -14,17 +14,17 @@ rust-version.workspace = true
1414
[package.metadata.cargo_check_external_types]
1515
allowed_external_types = ["bytes::*", "serde::*"]
1616

17+
[features]
18+
serde = ["dep:serde_core"]
19+
1720
[dependencies]
1821
bytes = { version = "1.2", default-features = false }
19-
serde_core = { version = "1.0.221", optional = true }
22+
serde_core = { version = "1", optional = true }
2023

2124
[dev-dependencies]
2225
ahash = { version = "0.8", default-features = false }
2326
serde_json = "1"
2427
static_assertions = "1.1"
2528

26-
[features]
27-
serde = ["dep:serde_core"]
28-
2929
[lints]
3030
workspace = true

bytestring/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<!-- prettier-ignore-start -->
66

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

0 commit comments

Comments
 (0)