Skip to content

Commit

Permalink
chore(release): 0.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user authored and MaidSafe-QA committed Oct 27, 2021
1 parent 7b0fa53 commit 567e680
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,35 @@

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.

## [0.25.0](https://github.com/maidsafe/qp2p/compare/v0.24.0...v0.25.0) (2021-10-27)


### ⚠ BREAKING CHANGES

* - The `ConnId` trait has been removed.
- `Endpoint`, `IncomingConnections`, `Connection`, and
`ConnectionIncoming` no longer have a generic type parameter.
- `Endpoint::disconnect_from`, `Endpoint::get_connection_by_addr`, and
`Endpoint::get_connection_by_id` have been removed.
- `Connection::id` has been removed.
- `Endpoint::new`, `Endpoint::connect_to`, and
`Endpoint::connect_to_any` now return
`(Connection, ConnectionIncoming)`, rather than `(Connection,
Option<ConnectionIncoming>)`.
- `Connection::open_bi` no longer takes a `priority` argument. This can
be set with `SendStream::set_priority` instead.
- Semantically, all calls to `Endpoint::connect_to` and
`Endpoint::connect_to_any` will establish and return new connections.
There is no connection reuse.

### Bug Fixes

* drop an unused field from `tests::quinn::Peer` ([7b0fa53](https://github.com/maidsafe/qp2p/commit/7b0fa532d6aa3f1a048b05e0b2cb0498505efaf6))
* fix incorrect log message ([1a9261b](https://github.com/maidsafe/qp2p/commit/1a9261bf7b5280551086b4076a82e1023b7efe65))


* remove connection pooling ([fd19094](https://github.com/maidsafe/qp2p/commit/fd19094d5b5ea7ab13c71eda09eb01986ad738b8))

## [0.24.0](https://github.com/maidsafe/qp2p/compare/v0.23.0...v0.24.0) (2021-10-20)


Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ homepage = "https://maidsafe.net"
license = "MIT OR BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/maidsafe/qp2p"
version = "0.24.0"
version = "0.25.0"
authors = [ "MaidSafe Developers <[email protected]>" ]
keywords = [ "quic" ]
edition = "2018"
Expand Down

0 comments on commit 567e680

Please sign in to comment.