Skip to content

Commit 8837e31

Browse files
committed
Release 1.12.0
1 parent 83a9939 commit 8837e31

File tree

8 files changed

+25
-22
lines changed

8 files changed

+25
-22
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. This
44
project adheres to [Semantic Versioning][SemVer].
55

66
## [Unreleased]
7+
8+
## [1.12.0] - 2023-09-28
79
### Added
810
- The new `blacklist_clients` and `blacklist_peers` options may be used to
911
specify blocklists for TURN clients and TURN peers separately. The old
@@ -469,7 +471,8 @@ project adheres to [Semantic Versioning][SemVer].
469471
### Added
470472
- Initial (pre-)release of the eturnal STUN/TURN server.
471473

472-
[Unreleased]: https://github.com/processone/eturnal/compare/1.11.1...HEAD
474+
[Unreleased]: https://github.com/processone/eturnal/compare/1.12.0...HEAD
475+
[1.12.0]: https://github.com/processone/eturnal/releases/tag/1.12.0
473476
[1.11.1]: https://github.com/processone/eturnal/releases/tag/1.11.1
474477
[1.11.0]: https://github.com/processone/eturnal/releases/tag/1.11.0
475478
[1.10.1]: https://github.com/processone/eturnal/releases/tag/1.10.1

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,15 +117,15 @@ As an alternative, there's an `#eturnal` channel [on Slack][23].
117117
[8]: https://pkgs.alpinelinux.org/packages?name=eturnal
118118
[9]: https://eturnal.net/documentation/#Installation
119119
[10]: https://eturnal.net/windows/
120-
[11]: https://github.com/processone/eturnal/blob/1.11.1/doc/INSTALL.md
120+
[11]: https://github.com/processone/eturnal/blob/1.12.0/doc/INSTALL.md
121121
[12]: https://en.wikipedia.org/wiki/YAML
122-
[13]: https://github.com/processone/eturnal/blob/1.11.1/config/eturnal.yml
122+
[13]: https://github.com/processone/eturnal/blob/1.12.0/config/eturnal.yml
123123
[14]: https://www.freedesktop.org/software/systemd/man/systemctl.html
124-
[15]: https://github.com/processone/eturnal/blob/1.11.1/overlay/init/sysv/eturnal
125-
[16]: https://github.com/processone/eturnal/blob/1.11.1/overlay/init/openrc/eturnal.initd
124+
[15]: https://github.com/processone/eturnal/blob/1.12.0/overlay/init/sysv/eturnal
125+
[16]: https://github.com/processone/eturnal/blob/1.12.0/overlay/init/openrc/eturnal.initd
126126
[17]: https://www.freedesktop.org/software/systemd/man/systemd-journald.service.html
127127
[18]: https://eturnal.net/documentation/
128-
[19]: https://github.com/processone/eturnal/blob/1.11.1/CHANGELOG.md
128+
[19]: https://github.com/processone/eturnal/blob/1.12.0/CHANGELOG.md
129129
[20]: https://github.com/processone/eturnal/issues
130130
[21]: https://xmpp.org
131131
[22]: https://eturnal.net/chat/

doc/CONTAINER.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ version of a particular release in case of any bug fix etc. of the image.
1313
| Tags | Description | Additional notes |
1414
| ------------ | ------------ | ------------ |
1515
| `edge` | Built from `master` branch, see [changelog](https://github.com/processone/eturnal/blob/master/CHANGELOG.md) | For testing purposes. |
16-
| `1.11.1`, `latest` | [Release changelog](https://github.com/processone/eturnal/releases/tag/1.11.1) | |
16+
| `1.12.0`, `latest` | [Release changelog](https://github.com/processone/eturnal/releases/tag/1.12.0) | |
1717

1818
Images are scanned daily by [Trivy](https://www.aquasec.com/products/trivy) and,
1919
if necessary, the `latest` release will be rebuilt and updated.

doc/INSTALL.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ and `openssl-devel`.
2121
> Rebar3][6] version.
2222
2323
```shell
24-
curl https://eturnal.net/eturnal-1.11.1.tar.gz | tar -C /tmp -xzf -
25-
cd /tmp/eturnal-1.11.1
24+
curl https://eturnal.net/eturnal-1.12.0.tar.gz | tar -C /tmp -xzf -
25+
cd /tmp/eturnal-1.12.0
2626
./rebar3 as prod tar
2727
```
2828

29-
This generates the archive file `_build/prod/rel/eturnal/eturnal-1.11.1.tar.gz`.
29+
This generates the archive file `_build/prod/rel/eturnal/eturnal-1.12.0.tar.gz`.
3030
The default installation prefix is set to `/opt/eturnal`, and it's assumed the
3131
server will be executed by a user named `eturnal`. To change these defaults,
3232
edit the [build.config][7] file or override the settings using environment
@@ -66,7 +66,7 @@ or `sudo -i`, first.
6666

6767
```shell
6868
cd /opt/eturnal
69-
tar -xzf /tmp/eturnal-1.11.1/_build/prod/rel/eturnal/eturnal-1.11.1.tar.gz
69+
tar -xzf /tmp/eturnal-1.12.0/_build/prod/rel/eturnal/eturnal-1.12.0.tar.gz
7070
chown eturnal /opt/eturnal/etc/eturnal.yml
7171
```
7272

@@ -95,8 +95,8 @@ configuration and usage instructions.
9595
[4]: https://gcc.gnu.org
9696
[5]: https://s3.amazonaws.com/rebar3/rebar3
9797
[6]: https://github.com/erlang/rebar3/releases/download/3.15.2/rebar3
98-
[7]: https://github.com/processone/eturnal/blob/1.11.1/build.config
99-
[8]: https://github.com/processone/eturnal/blob/1.11.1/config/shell.config
100-
[9]: https://github.com/processone/eturnal/blob/1.11.1/config/eturnal.yml
101-
[10]: https://github.com/processone/eturnal/blob/1.11.1/README.md
98+
[7]: https://github.com/processone/eturnal/blob/1.12.0/build.config
99+
[8]: https://github.com/processone/eturnal/blob/1.12.0/config/shell.config
100+
[9]: https://github.com/processone/eturnal/blob/1.12.0/config/eturnal.yml
101+
[10]: https://github.com/processone/eturnal/blob/1.12.0/README.md
102102
[11]: https://eturnal.net/documentation/

doc/QUICK-TEST.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ On Linux/x64 systems, the following commands provide STUN/TURN services on
44
UDP/TCP port 3478 (on Linux/arm64 systems, replace `x64` with `arm64`):
55

66
```shell
7-
curl https://eturnal.net/eturnal-1.11.1-linux-glibc-x64.tar.gz | tar -xzf -
7+
curl https://eturnal.net/eturnal-1.12.0-linux-glibc-x64.tar.gz | tar -xzf -
88
eturnal/bin/eturnalctl foreground
99
```
1010

doc/overview.edoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ limitations under the License.
1919
--------------------------------------------------------------------------------
2020

2121
@title eturnal Documentation
22-
@version 1.11.1 ({@date})
22+
@version 1.12.0 ({@date})
2323
@copyright 2020-2022 ProcessOne, SARL
2424
@author Holger Weiss
2525

@@ -33,7 +33,7 @@ clients receive temporary TURN credentials where the user name is comprised of
3333
the (Unix) expiry timestamp and the password is derived from a {@section secret}
3434
shared between the service generating those credentials and eturnal. The service
3535
offering the credentials <a
36-
href="https://github.com/processone/eturnal/blob/1.11.1/examples/make-credentials">performs</a>
36+
href="https://github.com/processone/eturnal/blob/1.12.0/examples/make-credentials">performs</a>
3737
a `Base64(HMAC-SHA1($secret, $timestamp))' operation to generate the ephemeral
3838
password, and eturnal does the same to verify it. As an alternative, static <a
3939
href="#credentials">credentials</a> may be configured as well.
@@ -52,9 +52,9 @@ Linux/x64 and Linux/arm64 systems, the <a
5252
href="https://eturnal.net/download/linux/installer/">binary release</a> can be
5353
installed as described <a href="#Installation">below</a>. For building eturnal
5454
from source, see the <a
55-
href="https://github.com/processone/eturnal/blob/1.11.1/doc/INSTALL.md">INSTALL.md</a>
55+
href="https://github.com/processone/eturnal/blob/1.12.0/doc/INSTALL.md">INSTALL.md</a>
5656
file shipped with eturnal's <a
57-
href="https://eturnal.net/download/eturnal-1.11.1.tar.gz">source code
57+
href="https://eturnal.net/download/eturnal-1.12.0.tar.gz">source code
5858
archive</a>.
5959

6060
=== Installation ===

tools/ctrrel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
# The github action "tails" the last line of this file to extract the relevant release and tags.
1616
#
1717

18-
1.11.1-r0
18+
1.12.0-r0

tools/get-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
set -e
66
set -u
77

8-
rel_vsn='1.11.1'
8+
rel_vsn='1.12.0'
99

1010
( git describe --tags --match '[0-9]*' 2>'/dev/null' || echo "$rel_vsn" ) \
1111
| sed -e 's/-g.*//' -e 's/-/+/' | tr -d '[:space:]'

0 commit comments

Comments
 (0)