Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.11.1 release #340

Merged
merged 2 commits into from
Oct 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ install_system_deps: &install_system_deps
jobs:
build_elixir_1_12_otp_24:
docker:
- image: hexpm/elixir:1.12.2-erlang-24.0.3-alpine-3.13.3
- image: hexpm/elixir:1.12.3-erlang-24.1.1-alpine-3.14.0
<<: *defaults
steps:
- checkout
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

This project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.11.1] - 2021-10-01

* Changed
* The DNS server ordering is more deterministic now. Global DNS servers are
guaranteed to be listed first and in the order specified. VintageNet will
also try to preserve the ordering of DNS servers learned through DHCP. This
isn't always possible, though. This fixes a hard-to-find error where an
a difference in DNS server orderings between to device locations led to
different behavior.
* Use `VintageNet.ConnectivityChecker.*` in VintageNet. The connectivity
checker module change was half made in `v0.11.0`, but the old module name
was kept in a couple places to avoid breaking unit tests in other VintageNet
libraries. Now it's completely converted. This doesn't affect runtime. Code
that references the previous names will still get deprecation warnings like
in `v0.11.0`.

## [v0.11.0] - 2021-08-19

This release should be a safe update for most users. Many routing table and
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.11.0"
@version "0.11.1"
@source_url "https://github.com/nerves-networking/vintage_net"

def project do
Expand Down