Skip to content

Commit

Permalink
v0.7.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fhunleth committed Dec 20, 2019
1 parent f52703f commit 1928da6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## v0.7.1

This release fixes an issue where the Internet-connectivity checking code could
crash. It was automatically restarted, but that had a side effect of delaying a
report that the device was connected AND breaking `mdns_lite`. Both the crash
and the restart issue were fixed. The `mdns_lite` side effect was due to its
multicast group membership being lost so this would affect other multicast-using
code.

* Bug fixes
* Fix `:timeout_value` crash in the `InternetConnectivityChecker`
* Force clear IPv4 addresses when the DHCP notifies a deconfig event. This
occurs on a restart and is quickly followed by a renew. However, if
applications don't see this bounce and don't reregister their multicast
listeners on affected IPv4 address, they'll lose the subscription.

* Improvements
* Added check for `nerves_network` and `nerves_init_gadget`. If your project
pulls these in, it will get a moderately friendly notice to remove them.

## v0.7.0

This release moves network technology implementations (WiFi, wired Ethernet,
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule VintageNet.MixProject do
use Mix.Project

@version "0.7.0"
@version "0.7.1"
@source_url "https://github.com/nerves-networking/vintage_net"

def project do
Expand Down

0 comments on commit 1928da6

Please sign in to comment.