Skip to content

Commit d87858a

Browse files
committed
Release v0.10.0
1 parent 4141be4 commit d87858a

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

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

3+
## 0.10.0 (2023-05-09)
4+
5+
* Drop support for old OTP and Rebar versions. `hex_core` now requires OTP20+ and Rebar 3.15.1+.
6+
7+
* Add `hex_repo:get_docs/3` and `hex_repo:get_public_key/1`.
8+
39
## 0.9.0 (2022-11-03)
410

511
* Change `hex_registry` functions to match protobuf fields

README.md

+3-3
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.9.0"}
202+
{hex_core, "0.10.0"}
203203
]}
204204
```
205205

@@ -208,9 +208,9 @@ Add to `rebar.config`:
208208
Add to `mix.exs`:
209209

210210
```elixir
211-
defp deps() do
211+
defp deps do
212212
[
213-
{:hex_core, "~> 0.9.0"}
213+
{:hex_core, "~> 0.10.0"}
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.9.0"},
3+
{vsn, "0.10.0"},
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.9.0").
1+
-define(HEX_CORE_VERSION, "0.10.0").

0 commit comments

Comments
 (0)