Skip to content

Commit 95fd991

Browse files
committed
Release v0.7.0
1 parent 91fcf65 commit 95fd991

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

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

3+
## 0.7.0 (2020-10-20)
4+
5+
* Fix compatibility with OTP 24
6+
* Change `hex_tarball:create/2` error value from `{error, too_big}` to `{tarball, {too_big_compressed | too_big_uncompressed, Size}}`.
7+
38
## 0.6.10 (2020-08-25)
49

510
* Add configuration for max tarball size

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ Add to `rebar.config`:
195195

196196
```erlang
197197
{deps, [
198-
{hex_core, "0.6.10"}
198+
{hex_core, "0.7.0"}
199199
]}
200200
```
201201

@@ -206,7 +206,7 @@ Add to `mix.exs`:
206206
```elixir
207207
defp deps() do
208208
[
209-
{:hex_core, "~> 0.6.0"}
209+
{:hex_core, "~> 0.7.0"}
210210
]
211211
end
212212
```

doc/tpl.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h1 style="margin-top: 0;margin-bottom: 0;text-align:center;">
2323
<span style="color: #3d3d3d;font-weight: 300;font-size: 20px;">hex_core</span>
2424
</h1>
2525
<h2 style="margin-top: 0;margin-bottom: 0;text-align:center;">
26-
<span style="color: #3d3d3d;font-weight: 300;font-size: 18px;">v0.6.10</span>
26+
<span style="color: #3d3d3d;font-weight: 300;font-size: 18px;">v0.7.0</span>
2727
</h2>
2828
</div>
2929

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

0 commit comments

Comments
 (0)