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

Commit 49ad820

Browse files
author
Alex
committed
version 0.7.24
1 parent 3bf98a8 commit 49ad820

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
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.24] 2022-05-01
89
### Fixed
910
* CLI: cleanup history did not correctly find duplicates
1011
* CHECK: update all fields for stations

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.23"
7+
version = "0.7.24"
88
edition = "2021"
99

1010
[dependencies]

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ docker stack deploy -c docker-compose-traefik.yml rb
9595
# download distribution
9696
mkdir -p radiobrowser
9797
cd radiobrowser
98-
wget https://github.com/segler-alex/radiobrowser-api-rust/releases/download/0.7.23/radiobrowser-dist.tar.gz
98+
wget https://github.com/segler-alex/radiobrowser-api-rust/releases/download/0.7.24/radiobrowser-dist.tar.gz
9999
tar -zxf radiobrowser-dist.tar.gz
100100

101101
# config database
@@ -116,9 +116,9 @@ sudo systemctl start radiobrowser
116116
* create database and database user
117117

118118
```bash
119-
wget https://github.com/segler-alex/radiobrowser-api-rust/releases/download/0.7.23/radiobrowser-api-rust_0.7.23_amd64.deb
119+
wget https://github.com/segler-alex/radiobrowser-api-rust/releases/download/0.7.24/radiobrowser-api-rust_0.7.24_amd64.deb
120120
sudo apt install default-mysql-server
121-
sudo dpkg -i radiobrowser-api-rust_0.7.23_amd64.deb
121+
sudo dpkg -i radiobrowser-api-rust_0.7.24_amd64.deb
122122
cat /usr/share/radiobrowser/init.sql | mysql
123123
```
124124

@@ -178,7 +178,7 @@ docker run \
178178
-p 3306:3306 \
179179
mariadb --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
180180
# start radiobrowser container
181-
docker pull segleralex/radiobrowser-api-rust:0.7.23
181+
docker pull segleralex/radiobrowser-api-rust:0.7.24
182182
docker run \
183183
--name radiobrowserapi \
184184
--detach \
@@ -187,7 +187,7 @@ docker run \
187187
-e DATABASE_URL=mysql://radiouser:password@dbserver/radio \
188188
-e HOST=0.0.0.0 \
189189
-p 8080:8080 \
190-
segleralex/radiobrowser-api-rust:0.7.23 radiobrowser-api-rust -vvv
190+
segleralex/radiobrowser-api-rust:0.7.24 radiobrowser-api-rust -vvv
191191
# show logs
192192
docker logs -f radiobrowserapi
193193
# access api with the following link
@@ -251,7 +251,7 @@ cd radiobrowser-api-rust
251251
# checkout stable
252252
git checkout stable
253253
# deploy, change email adress, for ssl with certbot
254-
ansible-playbook -e "email=test@example.com" -e "version=0.7.23" -e "ansible_python_interpreter=auto" -i "test.example.com,test2.example.com" ansible/playbook.yml
254+
ansible-playbook -e "email=test@example.com" -e "version=0.7.24" -e "ansible_python_interpreter=auto" -i "test.example.com,test2.example.com" ansible/playbook.yml
255255
```
256256

257257
## Building
@@ -300,7 +300,7 @@ mysql -D radio -u radiouser -ppassword
300300
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: ..).
301301
```
302302
$ radiobrowser-api-rust --help
303-
radiobrowser-api-rust 0.7.23
303+
radiobrowser-api-rust 0.7.24
304304
segler_alex@web.de
305305
HTTP Rest API for radiobrowser
306306

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.23
5+
image: segleralex/radiobrowser-api-rust:0.7.24
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.23
5+
image: segleralex/radiobrowser-api-rust:0.7.24
66
deploy:
77
replicas: 1
88
networks:

0 commit comments

Comments
 (0)