Skip to content

Commit

Permalink
Merge pull request #26 from vincentdephily/release_0.3
Browse files Browse the repository at this point in the history
Release 0.3.0
  • Loading branch information
vincentdephily authored Mar 23, 2020
2 parents c1f5e56 + 36ee3f7 commit a84c934
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.3 (unreleased)
# 0.3 (2020-03-23)

## API changes

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 = "mqttrs"
version = "0.2.0"
version = "0.3.0"
authors = ["00imvj00 <vijaybambhaniya007@gmail.com>",
"Vincent de Phily <moltonel@gmail.com>",
"Mathias Koch <smilykoch@gmail.com>"]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ packet).

## Usage

Add `mqttrs = "0.2"` and `bytes = "0.5"` to your `Cargo.toml`.
Add `mqttrs = "0.3"` and `bytes = "0.5"` to your `Cargo.toml`.

```rust
use mqttrs::*;
Expand Down Expand Up @@ -49,7 +49,7 @@ assert_eq!(Err(Error::InvalidHeader), decode(&mut garbage));

## Optional [serde](https://serde.rs/) support.

Use `mqttrs = { version = "0.2", features = [ "derive" ] }` in your `Cargo.toml`.
Use `mqttrs = { version = "0.3", features = [ "derive" ] }` in your `Cargo.toml`.

Enabling this features adds `#[derive(Deserialize, Serialize)]` to some `mqttrs` types. This
simplifies storing those structs in a database or file, typically to implement session support (qos,
Expand All @@ -60,7 +60,7 @@ functions.

## Optional `#[no_std]` support.

Use `mqttrs = { version = "0.2", default-features = false }` in your `Cargo.toml` to remove the
Use `mqttrs = { version = "0.3", default-features = false }` in your `Cargo.toml` to remove the
default `std` feature.

Disabling this feature comes with the cost of not implementing the `std::error::Error` trait,
Expand Down

0 comments on commit a84c934

Please sign in to comment.