Skip to content

Commit

Permalink
🔖 Bump to 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdesousa committed Nov 24, 2023
1 parent a25ab55 commit 55bb577
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## Changelog for 2.5.0

### Enhancements

* Added `env_overrides` for overriding `default` and `required` attributes
per environment (e.g. `dev`, `test`, `prod`).

## Changelog for 2.4.2

### Bugfix
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -981,7 +981,7 @@ in `mix.exs` (Elixir ≥ 1.11 and Erlang ≥ 22):
```elixir
def deps do
[
{:skogsra, "~> 2.4"}
{:skogsra, "~> 2.5"}
]
end
```
Expand All @@ -991,7 +991,7 @@ If you need YAML config provider support, add the following:
```elixir
def deps do
[
{:skogsra, "~> 2.4"},
{:skogsra, "~> 2.5"},
{:yamerl, "~> 0.10"}
]
end
Expand All @@ -1002,7 +1002,7 @@ If you need JSON config provider support, add the following:
```elixir
def deps do
[
{:skogsra, "~> 2.4"},
{:skogsra, "~> 2.5"},
{:jason, "~> 1.4"}
]
end
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 Skogsra.Mixfile do
use Mix.Project

@version "2.4.2"
@version "2.5.0"
@name "Skogsrå"
@description "Manages OS environment variables and application configuration options with ease"
@app :skogsra
Expand Down

0 comments on commit 55bb577

Please sign in to comment.