diff --git a/CHANGELOG.md b/CHANGELOG.md index 4af522ed..d058fbf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.4.1] - 2021-09-06 + +### Added + +- Added a configuration to the dashboard assigns so that the default time interval can be specified + by the user as opposed to being hard coded to 30s. + +### Fixed + +- Fixed Plug.Router plugin to handle requests without conn.private.plug_route info + ## [1.4.0] - 2021-09-01 ### Changed diff --git a/README.md b/README.md index 6547475c..7968dc34 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ dependencies in `mix.exs`: ```elixir def deps do [ - {:prom_ex, "~> 1.4.0"} + {:prom_ex, "~> 1.4.1"} ] end ``` diff --git a/mix.exs b/mix.exs index ae836063..6725f206 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule PromEx.MixProject do def project do [ app: :prom_ex, - version: "1.4.0", + version: "1.4.1", elixir: "~> 1.10", name: "PromEx", source_url: "https://github.com/akoutmos/prom_ex",