Skip to content

Commit

Permalink
Bumped version to 0.11.1. Updated README and CHANGELOG. Fixed TopicMa…
Browse files Browse the repository at this point in the history
…tcher test warning.
  • Loading branch information
fpagliughi committed May 3, 2022
1 parent 8a4a45b commit e9e4b80
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.11.1](https://github.com/eclipse/paho.mqtt.rust/compare/v0.11.0..v0.11.1) - 2021-05-03

- [#156](https://github.com/eclipse/paho.mqtt.rust/issues/156) Improvements to `TopicMatcher`:
- Doesn't require item type to implement `Default` trait
- Match iterator returns key/value tuple (not just value).
- [#154](https://github.com/eclipse/paho.mqtt.rust/pull/154) Add public interface to retrieve `client_id`.


## [v0.11.0](https://github.com/eclipse/paho.mqtt.rust/compare/v0.10.0..v0.11.0) - 2021-04-16

- Updated to support Paho C v1.3.10
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "paho-mqtt"
version = "0.11.0"
version = "0.11.1"
edition = "2018"
authors = ["Frank Pagliughi <[email protected]>"]
homepage = "https://github.com/eclipse/paho.mqtt.rust"
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ To keep up with the latest announcements for this project, follow:

**Mattermost:** [Eclipse Mattermost Paho Channel](https://mattermost.eclipse.org/eclipse/channels/paho)

### What's new in v0.11.1

- [#156](https://github.com/eclipse/paho.mqtt.rust/issues/156) Improvements to `TopicMatcher`:
- Doesn't require item type to implement `Default` trait
- Match iterator returns key/value tuple (not just value).
- [#154](https://github.com/eclipse/paho.mqtt.rust/pull/154) Add public interface to retrieve `client_id`.

### What's new in v0.11.0

- Updated to support Paho C v1.3.10
Expand Down
2 changes: 1 addition & 1 deletion src/topic_matcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ mod tests {
n * 2
}));

for (t, f) in matcher.matches("some/random/topic") {
for (_t, f) in matcher.matches("some/random/topic") {
let n = f(2);
assert_eq!(n, 4);
}
Expand Down

0 comments on commit e9e4b80

Please sign in to comment.