Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
weiss committed Jun 24, 2020
1 parent 0af9e39 commit 2f7aa7c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,23 @@ All notable changes to this project will be documented in this file. This
project adheres to [Semantic Versioning][SemVer].

## [Unreleased]

## [0.1.0] - 2020-06-24
### Changed
- Allow for configuring the same (port, transport) combination on different IP
addresses.

### Fixed
- Fix parameter expansion in eturnalctl script which prevented eturnal from
starting up.
- In the README section that describes building from source, don't forget to
mention that rebar3 needs to be made executable.

## [0.0.1] - 2020-06-23
### Added
- Initial (pre-)release of the eturnal STUN/TURN server.

[Unreleased]: https://github.com/processone/eturnal/compare/0.0.1...HEAD
[Unreleased]: https://github.com/processone/eturnal/compare/0.1.0...HEAD
[0.1.0]: https://github.com/processone/eturnal/releases/tag/0.1.0
[0.0.1]: https://github.com/processone/eturnal/releases/tag/0.0.1
[SemVer]: https://semver.org/spec/v2.0.0.html
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The following two commands give you a STUN/TURN server listening on port 3478
(UDP/TCP) and port 5349 (TLS) using the specified shared secret for [TURN
authentication][1] (no root privileges required):

$ curl -L https://eturnal.net/download/eturnal-0.0.1.tar.gz | tar -C /tmp -xzf -
$ curl -L https://eturnal.net/download/eturnal-0.1.0.tar.gz | tar -C /tmp -xzf -
$ ETURNAL_SECRET='crypt1c' /tmp/eturnal/bin/eturnal foreground

To stop the server, press `<Ctrl>+C`. To remove it, run `rm -rf /tmp/eturnal`.
Expand All @@ -37,7 +37,7 @@ or `sudo -i`, first.

2. Download and extract binary release:

# curl -L https://eturnal.net/download/eturnal-0.0.1.tar.gz | tar -C /opt -xzf -
# curl -L https://eturnal.net/download/eturnal-0.1.0.tar.gz | tar -C /opt -xzf -

3. Configure the shared secret, your server's IP address(es), and optionally
other settings:
Expand Down Expand Up @@ -82,7 +82,7 @@ and `openssl-devel`.
$ chmod +x rebar3
$ ./rebar3 as prod tar

This generates the archive file `_build/prod/rel/eturnal/eturnal-0.0.1.tar.gz`.
This generates the archive file `_build/prod/rel/eturnal/eturnal-0.1.0.tar.gz`.
The default installation prefix is set to `/opt/eturnal`, and it's assumed the
server will be executed by a user named `eturnal`. To change these defaults,
edit the `build.config` file and re-run `./rebar3 as prod tar`.
Expand All @@ -106,7 +106,7 @@ instructions](#persistent-installation) above, but adapt step 2 by creating the

# mkdir -p /opt/eturnal
# cd /opt/eturnal
# tar -xzf "$HOME/src/eturnal/_build/prod/rel/eturnal/eturnal-0.0.1.tar.gz"
# tar -xzf "$HOME/src/eturnal/_build/prod/rel/eturnal/eturnal-0.1.0.tar.gz"

## Configuring eturnal

Expand Down
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{recon, {git, "https://github.com/ferd/recon.git", {branch, "master"}}}]}.

{relx,
[{release, {eturnal, "0.0.1"},
[{release, {eturnal, "0.1.0"},
[eturnal,
conf,
sasl,
Expand Down
2 changes: 1 addition & 1 deletion scripts/make-binary
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ else
fi

rel_name='eturnal'
rel_vsn='0.0.1' # TODO: Use current release tag (or command-line argument).
rel_vsn='0.1.0' # TODO: Use current release tag (or command-line argument).
rebar_vsn='3.14.0-rc2'
crosstool_vsn='1.24.0'
zlib_vsn='1.2.11'
Expand Down
2 changes: 1 addition & 1 deletion src/eturnal.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, eturnal,
[{description, "STUN/TURN server"},
{vsn, "0.0.1"},
{vsn, "0.1.0"},
{registered, []},
{mod, {eturnal_app, []}},
{applications,
Expand Down

0 comments on commit 2f7aa7c

Please sign in to comment.