Skip to content

Commit 39b36c7

Browse files
authored
chore: release main (#330)
1 parent 1222b14 commit 39b36c7

6 files changed

Lines changed: 24 additions & 5 deletions

File tree

.release-please-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"toad": "0.17.6",
2+
"toad": "0.17.7",
33
"toad-array": "0.5.0",
44
"toad-common": "0.15.0",
55
"toad-cursor": "0.2.0",
66
"toad-hash": "0.3.0",
7-
"toad-jni": "0.14.1",
7+
"toad-jni": "0.15.0",
88
"toad-len": "0.1.3",
99
"toad-macros": "0.2.1",
1010
"toad-map": "0.2.3",

toad-jni/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [0.15.0](https://github.com/toad-lib/toad/compare/toad-jni-v0.14.1...toad-jni-v0.15.0) (2023-04-24)
4+
5+
6+
### Features
7+
8+
* java.util.logging.Formatter ([#329](https://github.com/toad-lib/toad/issues/329)) ([1222b14](https://github.com/toad-lib/toad/commit/1222b14631f2d6f857a8f53b56a82ca087d41de4))
9+
10+
11+
### Bug Fixes
12+
13+
* handleAcks should log expected tokens when ignoring an ack ([#328](https://github.com/toad-lib/toad/issues/328)) ([0846759](https://github.com/toad-lib/toad/commit/084675940b1dedcdd31d31d099324ca14328cc64))
14+
315
## [0.14.1](https://github.com/toad-lib/toad/compare/toad-jni-v0.14.0...toad-jni-v0.14.1) (2023-04-21)
416

517

toad-jni/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toad-jni"
3-
version = "0.14.1"
3+
version = "0.15.0"
44
edition = "2021"
55
description = "JNI abstractions and bindings used by the toad ecosystem"
66
authors = ["Orion Kindel <cakekindel@gmail.com>"]

toad/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [0.17.7](https://github.com/toad-lib/toad/compare/toad-v0.17.6...toad-v0.17.7) (2023-04-24)
6+
7+
8+
### Bug Fixes
9+
10+
* handleAcks should log expected tokens when ignoring an ack ([#328](https://github.com/toad-lib/toad/issues/328)) ([0846759](https://github.com/toad-lib/toad/commit/084675940b1dedcdd31d31d099324ca14328cc64))
11+
512
## [0.17.6](https://github.com/toad-lib/toad/compare/toad-v0.17.5...toad-v0.17.6) (2023-04-23)
613

714

toad/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toad"
3-
version = "0.17.6"
3+
version = "0.17.7"
44
edition = "2021"
55
description = "Universal implementation of the CoAP networking protocol"
66
authors = ["Orion Kindel <cakekindel@gmail.com>"]

toad/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
//! - While _classes_ of status codes are the same (Success 2xx -> 2.xx, Client error 4xx -> 4.xx, Server error 5xx -> 5.xx), the semantics of the individual response codes differ.
2525
2626
// x-release-please-start-version
27-
#![doc(html_root_url = "https://docs.rs/toad/0.17.6")]
27+
#![doc(html_root_url = "https://docs.rs/toad/0.17.7")]
2828
// x-release-please-end
2929
#![cfg_attr(any(docsrs, feature = "docs"), feature(doc_cfg))]
3030
// -

0 commit comments

Comments
 (0)