Skip to content
This repository was archived by the owner on Oct 8, 2023. It is now read-only.

Commit 3c5f899

Browse files
author
Alex
committed
version: 0.7.18
1 parent 6fc87bc commit 3c5f899

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [0.7.18] 2021-10-10
89
### Changed
910
* DB: removed fragment and query from streaming server urls
1011
* CHECK: removed fragment and query from streaming server urls

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Radio-Browser Server with REST API"
44
license = "agpl-3.0"
55
name = "radiobrowser-api-rust"
66
readme = "README.md"
7-
version = "0.7.17"
7+
version = "0.7.18"
88
edition = "2018"
99

1010
[dependencies]

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ docker stack deploy -c docker-compose-traefik.yml rb
9494
# download distribution
9595
mkdir -p radiobrowser
9696
cd radiobrowser
97-
wget https://github.com/segler-alex/radiobrowser-api-rust/releases/download/0.7.17/radiobrowser-dist.tar.gz
97+
wget https://github.com/segler-alex/radiobrowser-api-rust/releases/download/0.7.18/radiobrowser-dist.tar.gz
9898
tar -zxf radiobrowser-dist.tar.gz
9999

100100
# config database
@@ -115,7 +115,7 @@ sudo systemctl start radiobrowser
115115
* create database and database user
116116

117117
```bash
118-
wget https://github.com/segler-alex/radiobrowser-api-rust/releases/download/0.7.17/radiobrowser-api-rust_0.7.17_amd64.deb
118+
wget https://github.com/segler-alex/radiobrowser-api-rust/releases/download/0.7.18/radiobrowser-api-rust_0.7.18_amd64.deb
119119
sudo apt install default-mysql-server
120120
sudo dpkg -i radiobrowser-api-rust_0.7.1_amd64.deb
121121
cat /usr/share/radiobrowser/init.sql | mysql
@@ -177,7 +177,7 @@ docker run \
177177
-p 3306:3306 \
178178
mariadb --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
179179
# start radiobrowser container
180-
docker pull segleralex/radiobrowser-api-rust:0.7.17
180+
docker pull segleralex/radiobrowser-api-rust:0.7.18
181181
docker run \
182182
--name radiobrowserapi \
183183
--detach \
@@ -186,7 +186,7 @@ docker run \
186186
-e DATABASE_URL=mysql://radiouser:password@dbserver/radio \
187187
-e HOST=0.0.0.0 \
188188
-p 8080:8080 \
189-
segleralex/radiobrowser-api-rust:0.7.17 radiobrowser-api-rust -vvv
189+
segleralex/radiobrowser-api-rust:0.7.18 radiobrowser-api-rust -vvv
190190
# show logs
191191
docker logs -f radiobrowserapi
192192
# access api with the following link
@@ -250,7 +250,7 @@ cd radiobrowser-api-rust
250250
# checkout stable
251251
git checkout stable
252252
# deploy, change email adress, for ssl with certbot
253-
ansible-playbook -e "email=test@example.com" -e "version=0.7.17" -e "ansible_python_interpreter=auto" -i "test.example.com,test2.example.com" ansible/playbook.yml
253+
ansible-playbook -e "email=test@example.com" -e "version=0.7.18" -e "ansible_python_interpreter=auto" -i "test.example.com,test2.example.com" ansible/playbook.yml
254254
```
255255

256256
## Building
@@ -299,7 +299,7 @@ mysql -D radio -u radiouser -ppassword
299299
A print of the help page of the main executable. You can see parameters here. Many of them may also be set by environment variable (env: ..).
300300
```
301301
$ radiobrowser-api-rust --help
302-
radiobrowser-api-rust 0.7.17
302+
radiobrowser-api-rust 0.7.18
303303
segler_alex@web.de
304304
HTTP Rest API for radiobrowser
305305

docker-compose-traefik.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.2"
22
services:
33
api:
44
build: ./
5-
image: segleralex/radiobrowser-api-rust:0.7.17
5+
image: segleralex/radiobrowser-api-rust:0.7.18
66
deploy:
77
replicas: 1
88
labels:

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.0"
22
services:
33
api:
44
build: ./
5-
image: segleralex/radiobrowser-api-rust:0.7.17
5+
image: segleralex/radiobrowser-api-rust:0.7.18
66
deploy:
77
replicas: 1
88
networks:

0 commit comments

Comments
 (0)