changed
CHANGELOG.md
|
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
|
5
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+ ## [0.7.2] — 2021-05-12
|
9
|
+
|
10
|
+ - Update and loosen dependency constraints
|
11
|
+
|
8
12
|
## [0.7.1] — 2020-05-06
|
9
13
|
|
10
14
|
- Update and loosen dependency constraints, particularly for nimble parsec
|
changed
hex_metadata.config
|
@@ -54,15 +54,15 @@
|
54
54
|
{<<"name">>,<<"nimble_parsec">>},
|
55
55
|
{<<"optional">>,false},
|
56
56
|
{<<"repository">>,<<"hexpm">>},
|
57
|
- {<<"requirement">>,<<"~> 0.5">>}],
|
57
|
+ {<<"requirement">>,<<"~> 1.1">>}],
|
58
58
|
[{<<"app">>,<<"redix">>},
|
59
59
|
{<<"name">>,<<"redix">>},
|
60
60
|
{<<"optional">>,false},
|
61
61
|
{<<"repository">>,<<"hexpm">>},
|
62
|
- {<<"requirement">>,<<"~> 0.9">>}],
|
62
|
+ {<<"requirement">>,<<"~> 1.0">>}],
|
63
63
|
[{<<"app">>,<<"telemetry">>},
|
64
64
|
{<<"name">>,<<"telemetry">>},
|
65
65
|
{<<"optional">>,false},
|
66
66
|
{<<"repository">>,<<"hexpm">>},
|
67
67
|
{<<"requirement">>,<<"~> 0.4">>}]]}.
|
68
|
- {<<"version">>,<<"0.7.1">>}.
|
68
|
+ {<<"version">>,<<"0.7.2">>}.
|
changed
mix.exs
|
@@ -1,7 +1,7 @@
|
1
1
|
defmodule Kiq.MixProject do
|
2
2
|
use Mix.Project
|
3
3
|
|
4
|
- @version "0.7.1"
|
4
|
+ @version "0.7.2"
|
5
5
|
|
6
6
|
def project do
|
7
7
|
[
|
|
@@ -56,8 +56,8 @@ defmodule Kiq.MixProject do
|
56
56
|
[
|
57
57
|
{:jason, "~> 1.1"},
|
58
58
|
{:gen_stage, "~> 1.0"},
|
59
|
- {:nimble_parsec, "~> 0.5"},
|
60
|
- {:redix, "~> 0.9"},
|
59
|
+ {:nimble_parsec, "~> 1.1"},
|
60
|
+ {:redix, "~> 1.0"},
|
61
61
|
{:telemetry, "~> 0.4"},
|
62
62
|
{:benchee, "~> 1.0", only: [:dev, :test], runtime: false},
|
63
63
|
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
|