Sfoglia il codice sorgente

Bump to v0.7.2, add CHANGELOG

Dario Nieuwenhuis 3 anni fa
parent
commit
45494b4b5d
2 ha cambiato i file con 11 aggiunte e 1 eliminazioni
  1. 10 0
      CHANGELOG.md
  2. 1 1
      Cargo.toml

+ 10 - 0
CHANGELOG.md

@@ -8,6 +8,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 - Update `managed` from 0.7 to 0.8 ([442](https://github.com/smoltcp-rs/smoltcp/pull/442))
 
+## [0.7.2] - 2021-05-29
+
+- iface: check for ipv4 subnet broadcast addrs everywhere (#462)
+- dhcp: always send parameter_request_list. (#456)
+- dhcp: Clear expiration time on reset. (#456)
+- phy: fix FaultInjector returning a too big buffer when simulating a drop on tx (#463)
+- tcp rtte: fix "attempt to multiply with overflow". (#476)
+- tcp: LastAck should only change to Closed on ack of fin. (#477)
+- wire/dhcpv4: account for lease time, router and subnet options in DhcpRepr::buffer_len (#478)
+
 ## [0.7.1] - 2021-03-27
 
 - ndisc: Fix NeighborSolicit incorrectly asking for src addr instead of dst addr ([419](https://github.com/smoltcp-rs/smoltcp/pull/419))

+ 1 - 1
Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "smoltcp"
-version = "0.7.1"
+version = "0.7.2"
 edition = "2018"
 authors = ["whitequark <[email protected]>"]
 description = "A TCP/IP stack designed for bare-metal, real-time systems without a heap."