Skip to content

Commit

Permalink
Release v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtekmach committed Dec 3, 2024
1 parent 4ceeb13 commit 139ff6b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## v0.11.0 (2024-12-03)

* Use secure SSL defaults for OTP 25+.

* Start inets and ssl applications.

## v0.10.3 (2024-06-28)

* Fix `hex_api_release:retirement_params/0` type spec.
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.3"}
{hex_core, "0.11.0"}
]}
```

Expand All @@ -210,7 +210,7 @@ Add to `mix.exs`:
```elixir
defp deps do
[
{:hex_core, "~> 0.10.3"}
{:hex_core, "~> 0.11.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.10.3"},
{vsn, "0.11.0"},
{registered, []},
{applications, [kernel, stdlib, inets, ssl]},
{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.3").
-define(HEX_CORE_VERSION, "0.11.0").

0 comments on commit 139ff6b

Please sign in to comment.