Skip to content
Snippets Groups Projects
Unverified Commit cae528c7 authored by David McKay's avatar David McKay
Browse files

Releasing 4.0.0

parent e76e8aae
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
## [v4.0.0] - 2018-04-17
### NEW MAJOR VERSION DUE TO BREAKING CHANGE / API
We've decided that it is best, especially for umbrella applications, to adopt in-line configuration of Weave modules. We no longer support Mix style configuration. This provides much more flexibility, allowing you to configure multiple File and Environment loaders, each with different prefix's and directories, adopting multiple handlers if you wish. Please see the [README](./README.md) for more information.
## [v3.1.3] - 2018-04-04
* Fixed bug that stopped users from omitting `environment_prefix`, or setting it to `nil`, to load all environment variables
......
......@@ -22,7 +22,7 @@ This library makes it possible to load configuration, especially secrets, from d
```elixir
def deps do
[{:weave, "~> 3.1"}]
[{:weave, "~> 4.0.0"}]
end
```
......
......@@ -9,7 +9,7 @@ defmodule Weave.Mixfile do
def project do
[
app: :weave,
version: "3.1.3",
version: "4.0.0",
elixir: "~> 1.3",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
......@@ -47,8 +47,10 @@ defmodule Weave.Mixfile do
defp description do
"""
A just-in-time / 12-factor configuration loader for Elixir projects that
works great with Kubernetes and Docker Swarm.
Weave allows you to configure your application just-in-time (JIT),
embracing the 12-Factor manifesto. Weave supports loading configuration from
environment variables and files, with prefix and
filename filtering. Works great with Kubernetes and Docker Swarm.
"""
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment