Skip to content

Commit

Permalink
chore(local-channel): prepare release 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Oct 29, 2023
1 parent 87440e5 commit 392e591
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bytestring/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bytestring"
version = "1.3.0"
description = "A UTF-8 encoded read-only string using `Bytes` as storage"
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Rob Ede <robjtede@icloud.com>",
]
description = "An immutable UTF-8 encoded string using Bytes as storage"
keywords = ["string", "bytes", "utf8", "web", "actix"]
categories = ["no-std", "web-programming"]
homepage = "https://actix.rs"
Expand Down
2 changes: 1 addition & 1 deletion bytestring/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# `bytestring`

> A UTF-8 encoded read-only string using Bytes as storage.
> A UTF-8 encoded read-only string using `Bytes` as storage.
<!-- prettier-ignore-start -->

Expand Down
4 changes: 3 additions & 1 deletion bytestring/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
//! A UTF-8 encoded read-only string using Bytes as storage.
//! A UTF-8 encoded read-only string using `Bytes` as storage.
//!
//! See docs for [`ByteString`].

#![no_std]
#![deny(rust_2018_idioms, nonstandard_style)]
Expand Down
2 changes: 2 additions & 0 deletions local-channel/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
//! Non-thread-safe channels.
//!
//! See docs for [`mpsc::channel()`].

#![deny(rust_2018_idioms, nonstandard_style)]
#![warn(future_incompatible, missing_docs)]
Expand Down

0 comments on commit 392e591

Please sign in to comment.