Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

## 1.1.0

- Make `Line` thread-safe ([#7](https://github.com/thunderbird/operation-queue-rs/pull/7))
- Add docs.rs attribute to generate target/feature mentions ([#8](https://github.com/thunderbird/operation-queue-rs/pull/8))

## 1.0.0

- Initial move of the operation queue code from the comm-central repository.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "operation-queue"
version = "1.0.0"
version = "1.1.0"
edition = "2024"
description = "Helpers for synchronizing asynchronous protocol operations."
categories = ["asynchronous"]
Expand Down
4 changes: 4 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */

// Turn the nightly `doc_cfg` attribute on for docs.rs, so it mentions which
// types/modules are gated behind specific features.
#![cfg_attr(docsrs, feature(doc_cfg))]

//! This crate contains the queueing logic for asynchronous operations.
//!
//! It also contains helpers for synchronizing operations such as error handling
Expand Down
Loading