Skip to content

Commit eff43ae

Browse files
committed
Release v0.8.4
1 parent 30631cf commit eff43ae

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CHANGELOG
22

3+
## 0.8.4 (2021-12-20)
4+
5+
* Add `@doc` to `hex_licenses`
36
## 0.8.3 (2021-12-14)
47

58
* Don't warn on non-https URLs

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ Add to `rebar.config`:
200200

201201
```erlang
202202
{deps, [
203-
{hex_core, "0.8.3"}
203+
{hex_core, "0.8.4"}
204204
]}
205205
```
206206

@@ -211,7 +211,7 @@ Add to `mix.exs`:
211211
```elixir
212212
defp deps() do
213213
[
214-
{:hex_core, "~> 0.8.3"}
214+
{:hex_core, "~> 0.8.4"}
215215
]
216216
end
217217
```

docs.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -e
99

1010
rebar3 compile
1111
rebar3 edoc
12-
version=0.8.3
12+
version=0.8.4
1313
ex_doc "hex_core" $version "_build/default/lib/hex_core/ebin" \
1414
--source-ref v${version} \
1515
--config docs.config $@

src/hex_core.app.src

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, hex_core, [
22
{description, "Reference implementation of Hex specifications"},
3-
{vsn, "0.8.3"},
3+
{vsn, "0.8.4"},
44
{registered, []},
55
{applications, [kernel, stdlib]},
66
{licenses, ["Apache-2.0"]},

src/hex_core.hrl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
-define(HEX_CORE_VERSION, "0.8.3").
1+
-define(HEX_CORE_VERSION, "0.8.4").

src/hex_licenses.erl

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
%% @doc
2+
%% Hex Licenses.
13
%% File generated by spdx.ex. Do not edit manually.
24

35
-module(hex_licenses).

0 commit comments

Comments
 (0)