Skip to content

Commit 8a53ac8

Browse files
committed
Release v0.10.1
1 parent 420c03b commit 8a53ac8

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## v0.10.1 (2024-06-11)
4+
5+
* Update `hex_licenses` module to reflect most recent list available from SPDX.
6+
37
## v0.10.0 (2023-05-09)
48

59
* Drop support for old OTP and Rebar versions. `hex_core` now requires OTP20+ and Rebar 3.15.1+.

README.md

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

200200
```erlang
201201
{deps, [
202-
{hex_core, "0.10.0"}
202+
{hex_core, "0.10.1"}
203203
]}
204204
```
205205

@@ -210,7 +210,7 @@ Add to `mix.exs`:
210210
```elixir
211211
defp deps do
212212
[
213-
{:hex_core, "~> 0.10.0"}
213+
{:hex_core, "~> 0.10.1"}
214214
]
215215
end
216216
```

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.10.0"},
3+
{vsn, "0.10.1"},
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.10.0").
1+
-define(HEX_CORE_VERSION, "0.10.1").

0 commit comments

Comments
 (0)