Skip to content

Commit 3b76158

Browse files
committed
Release v0.13.0
1 parent 28cfc17 commit 3b76158

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## v0.13.0 (2026-03-08)
4+
5+
* Add file-based unpack via `hex_tarball:unpack({file, Path}, Output)` to avoid loading entire tarball into memory.
6+
* Add size validations for outer tarball entries (VERSION, CHECKSUM, metadata.config) during creation and extraction.
7+
38
## v0.12.2 (2026-02-27)
49

510
* Exclude `src/safe_erl_term.erl` from package.

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.2"}
224+
{hex_core, "0.13.0"}
225225
]}
226226
```
227227
@@ -232,7 +232,7 @@ Add to `mix.exs`:
232232
```elixir
233233
defp deps do
234234
[
235-
{:hex_core, "~> 0.12.2"}
235+
{:hex_core, "~> 0.13.0"}
236236
]
237237
end
238238
```

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

0 commit comments

Comments
 (0)