Skip to content

Commit

Permalink
Fix error in documentation (#291)
Browse files Browse the repository at this point in the history
* fix doc error

* updated changelog and bumped version
  • Loading branch information
minghuaw authored Oct 3, 2024
1 parent 730717c commit 4518adb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fe2o3-amqp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fe2o3-amqp"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
description = "An implementation of AMQP1.0 protocol based on serde and tokio"
license = "MIT/Apache-2.0"
Expand Down
4 changes: 4 additions & 0 deletions fe2o3-amqp/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 0.13.1

1. Fixed documentation error

## 0.13.0

1. Added support for using `LazyValue` as message body
Expand Down
4 changes: 2 additions & 2 deletions fe2o3-amqp/src/link/receiver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ cfg_transaction! {
}

#[cfg(docsrs)]
use fe2o3_amqp_types::messaging::{
use fe2o3_amqp_types::{
messaging::{AmqpSequence, AmqpValue, Batch, Body},
primitives::{LazyValue, Value},
AmqpSequence, AmqpValue, Batch, Body,
};

/// Credit mode for the link
Expand Down

0 comments on commit 4518adb

Please sign in to comment.