Skip to content

Commit baa0500

Browse files
committed
Release v0.6.1
1 parent 8420c40 commit baa0500

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

CHANGELOG.md

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

3+
## 0.6.1 (2019-07-30)
4+
5+
* Fix bug when publishing with configuration that does not have `repo_organization` key set
6+
37
## 0.6.0 (2019-07-27)
48

59
* **Backwards-incompatible**: Change successful return value of `hex_tarball:create/2` from
@@ -10,6 +14,10 @@
1014
* Do not allow comments in `safe_erl_term`
1115
* Forward compatible tarball contents by not failing on unknown files
1216

17+
## 0.5.1 (2019-07-30)
18+
19+
* Fix bug when publishing with configuration that does not have `repo_organization` key set
20+
1321
## 0.5.0 (2019-02-26)
1422

1523
* Fetch package data from proper repository organization and don't verify origin if configured

RELEASE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010

1111
5. Create GitHub release: `open "https://github.com/hexpm/hex_core/releases/new?title=v$VERSION&tag=v$VERSION&body=content%0Afrom%0Achangelog"`
1212

13-
6. `rm rm src/safe_erl_term.erl`
13+
6. `rm src/safe_erl_term.erl`
1414

1515
7. Spot check docs: `rebar3 as docs edoc`
1616

17-
8. Publish docs: `rebar3 hex docs`
17+
8. Publish package: `rebar3 hex publish`
1818

19-
9. Publish package: `rebar3 hex publish`
19+
9. Publish docs: `rebar3 hex docs`
2020

2121
## Places where version is mentioned
2222

doc/tpl.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ <h1 style="margin-top: 0;margin-bottom: 0;text-align:center;">
2020
<span style="color: #3d3d3d;font-weight: 300;font-size: 20px;">hex_core</span>
2121
</h1>
2222
<h2 style="margin-top: 0;margin-bottom: 0;text-align:center;">
23-
<span style="color: #3d3d3d;font-weight: 300;font-size: 18px;">v0.5.0</span>
23+
<span style="color: #3d3d3d;font-weight: 300;font-size: 18px;">v0.6.1</span>
2424
</h2>
2525
</div>
2626

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.6.0"},
3+
{vsn, "0.6.1"},
44
{registered, []},
55
{applications, [kernel, stdlib]},
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.5.0").
1+
-define(HEX_CORE_VERSION, "0.6.1").

0 commit comments

Comments
 (0)