Skip to content

Commit

Permalink
Release v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtekmach committed May 9, 2023
1 parent 4141be4 commit d87858a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## 0.10.0 (2023-05-09)

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

* Add `hex_repo:get_docs/3` and `hex_repo:get_public_key/1`.

## 0.9.0 (2022-11-03)

* Change `hex_registry` functions to match protobuf fields
Expand Down
6 changes: 3 additions & 3 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.9.0"}
{hex_core, "0.10.0"}
]}
```

Expand All @@ -208,9 +208,9 @@ Add to `rebar.config`:
Add to `mix.exs`:

```elixir
defp deps() do
defp deps do
[
{:hex_core, "~> 0.9.0"}
{:hex_core, "~> 0.10.0"}
]
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.9.0"},
{vsn, "0.10.0"},
{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.9.0").
-define(HEX_CORE_VERSION, "0.10.0").

0 comments on commit d87858a

Please sign in to comment.