Skip to content

Commit c4db9f6

Browse files
committed
Release v0.12.2
1 parent 50f0dc6 commit c4db9f6

5 files changed

Lines changed: 9 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# CHANGELOG
22

3+
## v0.12.2 (2026-02-27)
4+
5+
* Exclude `src/safe_erl_term.erl` from package.
6+
37
## v0.12.1 (2026-02-27)
48

5-
* Fix unsafe deserialization of Erlang terms in API responses (CVE-2026-21619)
9+
* Fix unsafe deserialization of Erlang terms in API responses (CVE-2026-21619).
610

711
## v0.12.0 (2025-10-26)
812

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ Add to `rebar.config`:
221221
222222
```erlang
223223
{deps, [
224-
{hex_core, "0.12.1"}
224+
{hex_core, "0.12.2"}
225225
]}
226226
```
227227
@@ -232,7 +232,7 @@ Add to `mix.exs`:
232232
```elixir
233233
defp deps do
234234
[
235-
{:hex_core, "~> 0.12.1"}
235+
{:hex_core, "~> 0.12.2"}
236236
]
237237
end
238238
```

RELEASE.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414

1515
7. Publish package: `rebar3 hex publish`
1616

17-
8. Publish docs: `rebar3 hex publish docs`
18-
1917
## Places where version is mentioned
2018

2119
```

src/hex_core.app.src

Lines changed: 1 addition & 1 deletion
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.12.1"},
3+
{vsn, "0.12.2"},
44
{registered, []},
55
{applications, [kernel, stdlib, inets, ssl]},
66
{licenses, ["Apache-2.0"]},

src/hex_core.hrl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
-define(HEX_CORE_VERSION, "0.12.1").
1+
-define(HEX_CORE_VERSION, "0.12.2").

0 commit comments

Comments
 (0)