Skip to content

Commit

Permalink
Release v0.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
supersimple committed Dec 20, 2021
1 parent 30631cf commit eff43ae
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## 0.8.4 (2021-12-20)

* Add `@doc` to `hex_licenses`
## 0.8.3 (2021-12-14)

* Don't warn on non-https URLs
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ Add to `rebar.config`:

```erlang
{deps, [
{hex_core, "0.8.3"}
{hex_core, "0.8.4"}
]}
```

Expand All @@ -211,7 +211,7 @@ Add to `mix.exs`:
```elixir
defp deps() do
[
{:hex_core, "~> 0.8.3"}
{:hex_core, "~> 0.8.4"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -e

rebar3 compile
rebar3 edoc
version=0.8.3
version=0.8.4
ex_doc "hex_core" $version "_build/default/lib/hex_core/ebin" \
--source-ref v${version} \
--config docs.config $@
2 changes: 1 addition & 1 deletion src/hex_core.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, hex_core, [
{description, "Reference implementation of Hex specifications"},
{vsn, "0.8.3"},
{vsn, "0.8.4"},
{registered, []},
{applications, [kernel, stdlib]},
{licenses, ["Apache-2.0"]},
Expand Down
2 changes: 1 addition & 1 deletion src/hex_core.hrl
Original file line number Diff line number Diff line change
@@ -1 +1 @@
-define(HEX_CORE_VERSION, "0.8.3").
-define(HEX_CORE_VERSION, "0.8.4").
2 changes: 2 additions & 0 deletions src/hex_licenses.erl
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
%% @doc
%% Hex Licenses.
%% File generated by spdx.ex. Do not edit manually.

This comment has been minimized.

Copy link
@wojtekmach

wojtekmach Dec 20, 2021

Member

This line is going to end up in the docs and I don’t think it should. Maybe if it’s in a separate comment block it wouldn’t?

btw remember to execute: $ rebar3 hex docs To publish docs :)


-module(hex_licenses).
Expand Down

0 comments on commit eff43ae

Please sign in to comment.