Skip to content

Commit

Permalink
Release v0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
supersimple committed Jun 11, 2024
1 parent 420c03b commit 8a53ac8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## v0.10.1 (2024-06-11)

* Update `hex_licenses` module to reflect most recent list available from SPDX.

## v0.10.0 (2023-05-09)

* Drop support for old OTP and Rebar versions. `hex_core` now requires OTP20+ and Rebar 3.15.1+.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ Add to `rebar.config`:

```erlang
{deps, [
{hex_core, "0.10.0"}
{hex_core, "0.10.1"}
]}
```

Expand All @@ -210,7 +210,7 @@ Add to `mix.exs`:
```elixir
defp deps do
[
{:hex_core, "~> 0.10.0"}
{:hex_core, "~> 0.10.1"}
]
end
```
Expand Down
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.10.0"},
{vsn, "0.10.1"},
{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.10.0").
-define(HEX_CORE_VERSION, "0.10.1").

0 comments on commit 8a53ac8

Please sign in to comment.