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

Commit 31604e3

Browse files
author
sailor
committed
version 0.6.7
1 parent d9449f2 commit 31604e3

File tree

6 files changed

+12
-8
lines changed

6 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.6.7] 2020-01-19
10+
### Fixed
11+
- Migrations on mysql
12+
913
## [0.6.6] 2020-01-19
1014
### Added
1115
- Simple sync of votes, may drop some votes

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.6.6"
7+
version = "0.6.7"
88
edition = "2018"
99

1010
[dependencies]

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ docker stack deploy -c docker-compose-traefik.yml rb
8080
# download distribution
8181
mkdir -p radiobrowser
8282
cd radiobrowser
83-
wget https://github.com/segler-alex/radiobrowser-api-rust/releases/download/0.6.6/radiobrowser-dist.tar.gz
83+
wget https://github.com/segler-alex/radiobrowser-api-rust/releases/download/0.6.7/radiobrowser-dist.tar.gz
8484
tar -zxf radiobrowser-dist.tar.gz
8585

8686
# config database
@@ -101,9 +101,9 @@ sudo systemctl start radiobrowser
101101
* create database and database user
102102

103103
```bash
104-
wget https://github.com/segler-alex/radiobrowser-api-rust/releases/download/0.6.6/radiobrowser-api-rust_0.6.6_amd64.deb
104+
wget https://github.com/segler-alex/radiobrowser-api-rust/releases/download/0.6.7/radiobrowser-api-rust_0.6.7_amd64.deb
105105
sudo apt install default-mysql-server
106-
sudo dpkg -i radiobrowser-api-rust_0.6.6_amd64.deb
106+
sudo dpkg -i radiobrowser-api-rust_0.6.7_amd64.deb
107107
cat /usr/share/radiobrowser/init.sql | mysql
108108
```
109109

@@ -193,7 +193,7 @@ cd radiobrowser-api-rust
193193
# checkout stable
194194
git checkout stable
195195
# deploy, change email adress, for ssl with certbot
196-
ansible-playbook -e "email=test@example.com" -e "version=0.6.6" -e "ansible_python_interpreter=auto" -i "test.example.com,test2.example.com" ansible/playbook.yml
196+
ansible-playbook -e "email=test@example.com" -e "version=0.6.7" -e "ansible_python_interpreter=auto" -i "test.example.com,test2.example.com" ansible/playbook.yml
197197
```
198198

199199
## Building

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.6.6
5+
image: segleralex/radiobrowser-api-rust:0.6.7
66
labels:
77
- "traefik.enable=true"
88
- "traefik.http.routers.api.rule=Host(`${SOURCE}`)"

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

0 commit comments

Comments
 (0)