2022-12-12 12:30:23 +01:00
|
|
|
# 0.44.0 [unreleased]
|
|
|
|
|
2023-01-03 20:42:32 +01:00
|
|
|
- Update to `prometheus-client` `v0.19.0`. See [PR 3207].
|
|
|
|
|
2022-12-20 09:52:08 +01:00
|
|
|
- Update to `libp2p-core` `v0.39.0`.
|
|
|
|
|
2022-12-12 12:30:23 +01:00
|
|
|
- Update to `libp2p-swarm` `v0.42.0`.
|
|
|
|
|
2023-01-27 01:39:48 +11:00
|
|
|
- Initialize `ProtocolConfig` via `GossipsubConfig`. See [PR 3381].
|
|
|
|
|
2023-01-27 05:44:04 +01:00
|
|
|
- Rename types as per [discussion 2174].
|
|
|
|
`Gossipsub` has been renamed to `Behaviour`.
|
|
|
|
The `Gossipsub` prefix has been removed from various types like `GossipsubConfig` or `GossipsubMessage`.
|
|
|
|
It is preferred to import the gossipsub protocol as a module (`use libp2p::gossipsub;`), and refer to its types via `gossipsub::`.
|
|
|
|
For example: `gossipsub::Behaviour` or `gossipsub::RawMessage`. See [PR 3303].
|
|
|
|
|
2023-01-03 20:42:32 +01:00
|
|
|
[PR 3207]: https://github.com/libp2p/rust-libp2p/pull/3207/
|
2023-01-27 05:44:04 +01:00
|
|
|
[PR 3303]: https://github.com/libp2p/rust-libp2p/pull/3303/
|
2023-01-27 01:39:48 +11:00
|
|
|
[PR 3381]: https://github.com/libp2p/rust-libp2p/pull/3381/
|
2023-01-27 05:44:04 +01:00
|
|
|
[discussion 2174]: https://github.com/libp2p/rust-libp2p/discussions/2174
|
2023-01-03 20:42:32 +01:00
|
|
|
|
2022-11-25 10:37:55 +01:00
|
|
|
# 0.43.0
|
2022-11-02 23:02:21 +11:00
|
|
|
|
|
|
|
- Update to `libp2p-core` `v0.38.0`.
|
|
|
|
|
|
|
|
- Update to `libp2p-swarm` `v0.41.0`.
|
|
|
|
|
2022-11-04 06:12:08 -04:00
|
|
|
- Update to `prost-codec` `v0.3.0`.
|
|
|
|
|
|
|
|
- Refactoring GossipsubCodec to use common protobuf Codec. See [PR 3070].
|
|
|
|
|
2022-11-18 22:04:16 +11:00
|
|
|
- Replace `Gossipsub`'s `NetworkBehaviour` implementation `inject_*` methods with the new `on_*` methods.
|
2022-11-17 09:28:40 +00:00
|
|
|
See [PR 3011].
|
|
|
|
|
2022-11-18 22:04:16 +11:00
|
|
|
- Replace `GossipsubHandler`'s `ConnectionHandler` implementation `inject_*` methods with the new `on_*` methods.
|
2022-11-17 17:19:36 +00:00
|
|
|
See [PR 3085].
|
|
|
|
|
2022-11-18 22:04:16 +11:00
|
|
|
- Update `rust-version` to reflect the actual MSRV: 1.62.0. See [PR 3090].
|
|
|
|
|
2022-11-17 17:19:36 +00:00
|
|
|
[PR 3085]: https://github.com/libp2p/rust-libp2p/pull/3085
|
2022-11-04 06:12:08 -04:00
|
|
|
[PR 3070]: https://github.com/libp2p/rust-libp2p/pull/3070
|
2022-11-17 09:28:40 +00:00
|
|
|
[PR 3011]: https://github.com/libp2p/rust-libp2p/pull/3011
|
2022-11-18 22:04:16 +11:00
|
|
|
[PR 3090]: https://github.com/libp2p/rust-libp2p/pull/3090
|
2022-11-04 06:12:08 -04:00
|
|
|
|
2022-10-14 15:30:16 +01:00
|
|
|
# 0.42.0
|
2022-09-22 12:48:32 +04:00
|
|
|
|
|
|
|
- Bump rand to 0.8 and quickcheck to 1. See [PR 2857].
|
|
|
|
|
2022-09-30 01:32:22 +10:00
|
|
|
- Update to `libp2p-core` `v0.37.0`.
|
|
|
|
|
|
|
|
- Update to `libp2p-swarm` `v0.40.0`.
|
|
|
|
|
2022-09-22 12:48:32 +04:00
|
|
|
[PR 2857]: https://github.com/libp2p/rust-libp2p/pull/2857
|
|
|
|
|
2022-09-07 09:44:51 +02:00
|
|
|
# 0.41.0
|
2022-08-26 07:08:33 +02:00
|
|
|
|
|
|
|
- Update to `libp2p-swarm` `v0.39.0`.
|
|
|
|
|
2022-09-07 09:16:22 +03:00
|
|
|
- Update to `libp2p-core` `v0.36.0`.
|
|
|
|
|
2022-09-05 07:31:13 +03:00
|
|
|
- Allow publishing with any `impl Into<TopicHash>` as a topic. See [PR 2862].
|
|
|
|
|
|
|
|
[PR 2862]: https://github.com/libp2p/rust-libp2p/pull/2862
|
|
|
|
|
2022-08-22 05:14:04 +02:00
|
|
|
# 0.40.0
|
2022-07-07 04:20:03 -05:00
|
|
|
|
2022-08-30 03:03:54 -05:00
|
|
|
- Update prost requirement from 0.10 to 0.11 which no longer installs the protoc Protobuf compiler.
|
|
|
|
Thus you will need protoc installed locally. See [PR 2788].
|
|
|
|
|
2022-07-07 04:20:03 -05:00
|
|
|
- Update to `libp2p-swarm` `v0.38.0`.
|
|
|
|
|
2022-07-18 04:20:11 +01:00
|
|
|
- Update to `libp2p-core` `v0.35.0`.
|
|
|
|
|
2022-08-17 07:02:21 +02:00
|
|
|
- Update to `prometheus-client` `v0.18.0`. See [PR 2822].
|
2022-07-22 11:20:39 +02:00
|
|
|
|
2022-08-17 07:02:21 +02:00
|
|
|
[PR 2822]: https://github.com/libp2p/rust-libp2p/pull/2761/
|
2022-08-30 03:03:54 -05:00
|
|
|
[PR 2788]: https://github.com/libp2p/rust-libp2p/pull/2788
|
2022-07-22 11:20:39 +02:00
|
|
|
|
2022-07-05 13:09:58 +02:00
|
|
|
# 0.39.0
|
2022-06-23 13:52:11 +02:00
|
|
|
|
|
|
|
- Update to `libp2p-core` `v0.34.0`.
|
|
|
|
|
|
|
|
- Update to `libp2p-swarm` `v0.37.0`.
|
|
|
|
|
2022-07-02 05:30:02 -03:00
|
|
|
- Allow for custom protocol ID via `GossipsubConfigBuilder::protocol_id()`. See [PR 2718].
|
|
|
|
|
|
|
|
[PR 2718]: https://github.com/libp2p/rust-libp2p/pull/2718/
|
|
|
|
|
2022-06-14 23:31:27 +09:00
|
|
|
# 0.38.1
|
|
|
|
|
|
|
|
- Fix duplicate connection id. See [PR 2702].
|
|
|
|
|
|
|
|
[PR 2702]: https://github.com/libp2p/rust-libp2p/pull/2702
|
|
|
|
|
2022-05-31 13:12:53 +02:00
|
|
|
# 0.38.0
|
2022-04-06 20:23:16 +02:00
|
|
|
|
|
|
|
- Update to `libp2p-core` `v0.33.0`.
|
|
|
|
|
|
|
|
- Update to `libp2p-swarm` `v0.36.0`.
|
|
|
|
|
2022-05-03 13:11:48 +02:00
|
|
|
- changed `TimeCache::contains_key` and `DuplicateCache::contains` to immutable methods. See [PR 2620].
|
|
|
|
|
2022-05-06 14:57:40 +02:00
|
|
|
- Update to `prometheus-client` `v0.16.0`. See [PR 2631].
|
|
|
|
|
2022-05-03 13:11:48 +02:00
|
|
|
[PR 2620]: https://github.com/libp2p/rust-libp2p/pull/2620
|
2022-05-06 14:57:40 +02:00
|
|
|
[PR 2631]: https://github.com/libp2p/rust-libp2p/pull/2631
|
2022-05-03 13:11:48 +02:00
|
|
|
|
2022-04-04 18:27:41 +02:00
|
|
|
# 0.37.0
|
2022-02-28 10:27:58 +01:00
|
|
|
|
|
|
|
- Update to `libp2p-swarm` `v0.35.0`.
|
|
|
|
|
2022-03-17 22:14:52 +05:30
|
|
|
- Fix gossipsub metric (see [PR 2558]).
|
|
|
|
|
2022-04-08 14:32:27 -05:00
|
|
|
- Allow the user to set the buckets for the score histogram, and to adjust them from the score thresholds. See [PR 2595].
|
|
|
|
|
2022-03-17 22:14:52 +05:30
|
|
|
[PR 2558]: https://github.com/libp2p/rust-libp2p/pull/2558
|
2022-04-08 14:32:27 -05:00
|
|
|
[PR 2595]: https://github.com/libp2p/rust-libp2p/pull/2595
|
2022-03-17 22:14:52 +05:30
|
|
|
|
2022-02-22 14:05:19 +01:00
|
|
|
# 0.36.0 [2022-02-22]
|
2022-02-03 11:31:41 +01:00
|
|
|
|
2022-02-03 16:38:41 +00:00
|
|
|
- Update to `libp2p-core` `v0.32.0`.
|
|
|
|
|
|
|
|
- Update to `libp2p-swarm` `v0.34.0`.
|
|
|
|
|
2022-02-03 11:31:41 +01:00
|
|
|
- Move from `open-metrics-client` to `prometheus-client` (see [PR 2442]).
|
|
|
|
|
2022-02-07 14:00:46 -05:00
|
|
|
- Emit gossip of all non empty topics (see [PR 2481]).
|
|
|
|
|
2022-02-14 09:49:00 -05:00
|
|
|
- Merge NetworkBehaviour's inject_\* paired methods (see [PR 2445]).
|
2022-02-09 10:08:28 -05:00
|
|
|
|
2022-02-14 21:24:58 +11:00
|
|
|
- Revert to wasm-timer (see [PR 2506]).
|
|
|
|
|
2022-02-14 09:49:00 -05:00
|
|
|
- Do not overwrite msg's peers if put again into mcache (see [PR 2493]).
|
|
|
|
|
2022-02-03 11:31:41 +01:00
|
|
|
[PR 2442]: https://github.com/libp2p/rust-libp2p/pull/2442
|
2022-02-07 14:00:46 -05:00
|
|
|
[PR 2481]: https://github.com/libp2p/rust-libp2p/pull/2481
|
2022-02-09 10:08:28 -05:00
|
|
|
[PR 2445]: https://github.com/libp2p/rust-libp2p/pull/2445
|
2022-02-14 21:24:58 +11:00
|
|
|
[PR 2506]: https://github.com/libp2p/rust-libp2p/pull/2506
|
2022-02-14 09:49:00 -05:00
|
|
|
[PR 2493]: https://github.com/libp2p/rust-libp2p/pull/2493
|
2022-02-03 11:31:41 +01:00
|
|
|
|
2022-01-27 11:29:09 +01:00
|
|
|
# 0.35.0 [2022-01-27]
|
2021-11-24 17:26:03 +01:00
|
|
|
|
|
|
|
- Update dependencies.
|
|
|
|
|
2021-11-26 09:34:58 -07:00
|
|
|
- Migrate to Rust edition 2021 (see [PR 2339]).
|
|
|
|
|
2021-12-21 17:31:19 -05:00
|
|
|
- Add metrics for network and configuration performance analysis (see [PR 2346]).
|
|
|
|
|
protocols/gossipsub: Improve bandwidth (#2327)
This PR adds some bandwidth improvements to gossipsub.
After a bit of inspection on live networks a number of improvements have been
made that can help reduce unnecessary bandwidth on gossipsub networks. This PR
introduces the following:
- A 1:1 tracking of all in-flight IWANT requests. This not only ensures that all
IWANT requests are answered and peers penalized accordingly, but gossipsub
will no no longer create multiple IWANT requests for multiple peers.
Previously, gossipsub sampled the in-flight IWANT requests in order to
penalize peers for not responding with a high probability that we would detect
non-responsive nodes. Futher, it was possible to re-request IWANT messages
that are already being requested causing added duplication in messages and
wasted unnecessary IWANT control messages. This PR shifts this logic to only
request message ids that we are not currently requesting from peers.
- Triangle routing naturally gives rise to unnecessary duplicates. Consider a
mesh of 4 peers that are interconnected. Peer 1 sends a new message to 2,3,4.
2 propagates to 3,4 and 3 propagates to 2,4 and 4 propagates to 2,3. In this
case 3 has received the message 3 times. If we keep track of peers that send
us messages, when publishing or forwarding we no longer send to peers that
have sent us a duplicate, we can eliminate one of the sends in the scenario
above. This only occurs when message validation is async however. This PR adds
this logic to remove some elements of triangle-routing duplicates.
Co-authored-by: Divma <26765164+divagant-martian@users.noreply.github.com>
Co-authored-by: Max Inden <mail@max-inden.de>
Co-authored-by: Diva M <divma@protonmail.com>
2021-12-21 22:09:15 +11:00
|
|
|
- Improve bandwidth performance by tracking IWANTs and reducing duplicate sends
|
|
|
|
(see [PR 2327]).
|
|
|
|
|
2022-01-11 15:38:51 -05:00
|
|
|
- Implement `Serialize` and `Deserialize` for `MessageId` and `FastMessageId` (see [PR 2408])
|
|
|
|
|
2021-12-30 14:23:41 -05:00
|
|
|
- Fix `GossipsubConfigBuilder::build()` requiring `&self` to live for `'static` (see [PR 2409])
|
|
|
|
|
2022-01-17 12:08:34 -05:00
|
|
|
- Implement Unsubscribe backoff as per [libp2p specs PR 383] (see [PR 2403]).
|
|
|
|
|
2021-12-21 17:31:19 -05:00
|
|
|
[PR 2346]: https://github.com/libp2p/rust-libp2p/pull/2346
|
2021-11-26 09:34:58 -07:00
|
|
|
[PR 2339]: https://github.com/libp2p/rust-libp2p/pull/2339
|
protocols/gossipsub: Improve bandwidth (#2327)
This PR adds some bandwidth improvements to gossipsub.
After a bit of inspection on live networks a number of improvements have been
made that can help reduce unnecessary bandwidth on gossipsub networks. This PR
introduces the following:
- A 1:1 tracking of all in-flight IWANT requests. This not only ensures that all
IWANT requests are answered and peers penalized accordingly, but gossipsub
will no no longer create multiple IWANT requests for multiple peers.
Previously, gossipsub sampled the in-flight IWANT requests in order to
penalize peers for not responding with a high probability that we would detect
non-responsive nodes. Futher, it was possible to re-request IWANT messages
that are already being requested causing added duplication in messages and
wasted unnecessary IWANT control messages. This PR shifts this logic to only
request message ids that we are not currently requesting from peers.
- Triangle routing naturally gives rise to unnecessary duplicates. Consider a
mesh of 4 peers that are interconnected. Peer 1 sends a new message to 2,3,4.
2 propagates to 3,4 and 3 propagates to 2,4 and 4 propagates to 2,3. In this
case 3 has received the message 3 times. If we keep track of peers that send
us messages, when publishing or forwarding we no longer send to peers that
have sent us a duplicate, we can eliminate one of the sends in the scenario
above. This only occurs when message validation is async however. This PR adds
this logic to remove some elements of triangle-routing duplicates.
Co-authored-by: Divma <26765164+divagant-martian@users.noreply.github.com>
Co-authored-by: Max Inden <mail@max-inden.de>
Co-authored-by: Diva M <divma@protonmail.com>
2021-12-21 22:09:15 +11:00
|
|
|
[PR 2327]: https://github.com/libp2p/rust-libp2p/pull/2327
|
2022-01-11 15:38:51 -05:00
|
|
|
[PR 2408]: https://github.com/libp2p/rust-libp2p/pull/2408
|
2021-12-30 14:23:41 -05:00
|
|
|
[PR 2409]: https://github.com/libp2p/rust-libp2p/pull/2409
|
2022-01-17 12:08:34 -05:00
|
|
|
[PR 2403]: https://github.com/libp2p/rust-libp2p/pull/2403
|
|
|
|
[libp2p specs PR 383]: https://github.com/libp2p/specs/pull/383
|
2021-11-26 09:34:58 -07:00
|
|
|
|
2021-11-16 16:39:42 +01:00
|
|
|
# 0.34.0 [2021-11-16]
|
2021-10-30 12:41:30 +02:00
|
|
|
|
2021-11-16 08:59:39 -05:00
|
|
|
- Add topic and mesh metrics (see [PR 2316]).
|
|
|
|
|
2021-11-03 18:21:51 -05:00
|
|
|
- Fix bug in internal peer's topics tracking (see [PR 2325]).
|
|
|
|
|
2021-10-30 12:41:30 +02:00
|
|
|
- Use `instant` and `futures-timer` instead of `wasm-timer` (see [PR 2245]).
|
|
|
|
|
2021-11-15 14:17:23 +01:00
|
|
|
- Update dependencies.
|
|
|
|
|
2021-10-30 12:41:30 +02:00
|
|
|
[PR 2245]: https://github.com/libp2p/rust-libp2p/pull/2245
|
2021-11-03 18:21:51 -05:00
|
|
|
[PR 2325]: https://github.com/libp2p/rust-libp2p/pull/2325
|
2021-11-16 08:59:39 -05:00
|
|
|
[PR 2316]: https://github.com/libp2p/rust-libp2p/pull/2316
|
2021-10-30 12:41:30 +02:00
|
|
|
|
2021-11-02 20:40:48 +01:00
|
|
|
# 0.33.0 [2021-11-01]
|
2021-07-22 22:34:13 +02:00
|
|
|
|
2021-09-27 17:21:37 +10:00
|
|
|
- Add an event to register peers that do not support the gossipsub protocol
|
|
|
|
[PR 2241](https://github.com/libp2p/rust-libp2p/pull/2241)
|
|
|
|
|
2021-08-18 12:08:45 +02:00
|
|
|
- Make default features of `libp2p-core` optional.
|
|
|
|
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)
|
|
|
|
|
2021-08-11 17:37:10 +02:00
|
|
|
- Improve internal peer tracking.
|
|
|
|
[PR 2175](https://github.com/libp2p/rust-libp2p/pull/2175)
|
|
|
|
|
2021-07-22 22:34:13 +02:00
|
|
|
- Update dependencies.
|
|
|
|
|
2021-08-03 07:29:56 -05:00
|
|
|
- Allow `message_id_fn`s to accept closures that capture variables.
|
|
|
|
[PR 2103](https://github.com/libp2p/rust-libp2p/pull/2103)
|
|
|
|
|
2021-10-01 16:23:08 +00:00
|
|
|
- Implement std::error::Error for error types.
|
|
|
|
[PR 2254](https://github.com/libp2p/rust-libp2p/pull/2254)
|
|
|
|
|
2021-07-12 21:24:58 +02:00
|
|
|
# 0.32.0 [2021-07-12]
|
2021-05-27 14:04:33 +02:00
|
|
|
|
|
|
|
- Update dependencies.
|
|
|
|
|
2021-06-12 08:11:55 +02:00
|
|
|
- Reduce log levels across the crate to lessen noisiness of libp2p-gossipsub (see [PR 2101]).
|
|
|
|
|
|
|
|
[PR 2101]: https://github.com/libp2p/rust-libp2p/pull/2101
|
|
|
|
|
2021-05-17 12:43:24 +02:00
|
|
|
# 0.31.0 [2021-05-17]
|
2021-05-14 17:16:50 +10:00
|
|
|
|
|
|
|
- Keep connections to peers in a mesh alive. Allow closing idle connections to peers not in a mesh
|
|
|
|
[PR-2043].
|
|
|
|
|
|
|
|
[PR-2043]: https://github.com/libp2p/rust-libp2p/pull/2043https://github.com/libp2p/rust-libp2p/pull/2043
|
|
|
|
|
2021-04-27 15:00:13 +02:00
|
|
|
# 0.30.1 [2021-04-27]
|
|
|
|
|
|
|
|
- Remove `regex-filter` feature flag thus always enabling `regex::RegexSubscriptionFilter` [PR
|
|
|
|
2056](https://github.com/libp2p/rust-libp2p/pull/2056).
|
|
|
|
|
2021-04-13 20:15:15 +02:00
|
|
|
# 0.30.0 [2021-04-13]
|
2021-03-18 14:55:33 +01:00
|
|
|
|
|
|
|
- Update `libp2p-swarm`.
|
|
|
|
|
2021-04-01 13:57:29 +02:00
|
|
|
- Update dependencies.
|
|
|
|
|
2021-03-17 15:28:13 +01:00
|
|
|
# 0.29.0 [2021-03-17]
|
2021-02-25 11:35:52 +01:00
|
|
|
|
|
|
|
- Update `libp2p-swarm`.
|
|
|
|
|
2021-03-15 12:31:21 +01:00
|
|
|
- Update dependencies.
|
|
|
|
|
2021-02-15 20:06:50 +01:00
|
|
|
# 0.28.0 [2021-02-15]
|
2021-01-20 10:50:23 +01:00
|
|
|
|
|
|
|
- Prevent non-published messages being added to caches.
|
|
|
|
[PR 1930](https://github.com/libp2p/rust-libp2p/pull/1930)
|
|
|
|
|
2021-02-13 20:15:14 +01:00
|
|
|
- Update dependencies.
|
|
|
|
|
2021-01-12 20:33:43 +01:00
|
|
|
# 0.27.0 [2021-01-12]
|
2021-01-12 12:48:37 +01:00
|
|
|
|
|
|
|
- Update dependencies.
|
|
|
|
|
|
|
|
- Implement Gossipsub v1.1 specification.
|
|
|
|
[PR 1720](https://github.com/libp2p/rust-libp2p/pull/1720)
|
|
|
|
|
2020-12-18 10:03:20 +01:00
|
|
|
# 0.26.0 [2020-12-17]
|
2020-12-15 14:40:39 +01:00
|
|
|
|
|
|
|
- Update `libp2p-swarm` and `libp2p-core`.
|
|
|
|
|
2020-11-25 15:30:13 +01:00
|
|
|
# 0.25.0 [2020-11-25]
|
2020-11-17 11:15:20 +01:00
|
|
|
|
|
|
|
- Update `libp2p-swarm` and `libp2p-core`.
|
|
|
|
|
2020-11-09 17:46:07 +01:00
|
|
|
# 0.24.0 [2020-11-09]
|
2020-10-31 01:51:27 +11:00
|
|
|
|
|
|
|
- Update dependencies.
|
|
|
|
|
2020-10-16 20:36:47 +02:00
|
|
|
# 0.23.0 [2020-10-16]
|
2020-09-11 12:16:36 +02:00
|
|
|
|
2020-09-11 15:19:05 +02:00
|
|
|
- Update dependencies.
|
2020-09-11 12:16:36 +02:00
|
|
|
|
2020-09-09 12:20:25 +02:00
|
|
|
# 0.22.0 [2020-09-09]
|
2020-08-23 16:57:20 +02:00
|
|
|
|
2020-09-03 12:31:04 +02:00
|
|
|
- Update `libp2p-swarm` and `libp2p-core`.
|
2020-08-23 16:57:20 +02:00
|
|
|
|
2020-08-18 17:04:34 +02:00
|
|
|
# 0.21.0 [2020-08-18]
|
2020-07-29 09:28:04 +02:00
|
|
|
|
2020-08-13 12:10:52 +02:00
|
|
|
- Add public API to list topics and peers. [PR 1677](https://github.com/libp2p/rust-libp2p/pull/1677).
|
|
|
|
|
2020-08-13 01:59:16 +10:00
|
|
|
- Add message signing and extended privacy/validation configurations. [PR 1583](https://github.com/libp2p/rust-libp2p/pull/1583).
|
|
|
|
|
2020-07-29 09:28:04 +02:00
|
|
|
- `Debug` instance for `Gossipsub`. [PR 1673](https://github.com/libp2p/rust-libp2p/pull/1673).
|
|
|
|
|
2020-08-04 11:30:09 +02:00
|
|
|
- Bump `libp2p-core` and `libp2p-swarm` dependency.
|
|
|
|
|
2020-07-01 15:36:20 +02:00
|
|
|
# 0.20.0 [2020-07-01]
|
|
|
|
|
|
|
|
- Updated dependencies.
|
|
|
|
|
2020-06-23 11:51:49 +02:00
|
|
|
# 0.19.3 [2020-06-23]
|
|
|
|
|
2020-07-01 15:36:20 +02:00
|
|
|
- Maintenance release fixing linter warnings.
|
2020-06-23 11:51:49 +02:00
|
|
|
|
2020-06-22 11:41:28 +02:00
|
|
|
# 0.19.2 [2020-06-22]
|
|
|
|
|
2020-07-01 15:36:20 +02:00
|
|
|
- Updated dependencies.
|