Skip to content

Commit

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

## 0.8.3 (2021-12-14)

* Don't warn on non-https URLs
* Add `hex_licenses` module

## 0.8.2 (2021-05-28)

* Warn on unsafe httpc default SSL settings
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.2"}
{hex_core, "0.8.3"}
]}
```

Expand All @@ -211,7 +211,7 @@ Add to `mix.exs`:
```elixir
defp deps() do
[
{:hex_core, "~> 0.8.2"}
{:hex_core, "~> 0.8.3"}
]
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.2
version=0.8.3
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.2"},
{vsn, "0.8.3"},
{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.2").
-define(HEX_CORE_VERSION, "0.8.3").

0 comments on commit 30631cf

Please sign in to comment.