chore: release 3.0.0-beta.1
|
@ -25,7 +25,7 @@ jobs:
|
|||
- name: Create Release
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
body_path: docs/releases/3.0.0-beta.0.md
|
||||
body_path: docs/releases/3.0.0-beta.1.md
|
||||
draft: true
|
||||
prerelease: true
|
||||
files: libretime-*.tar.gz
|
||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import find_packages, setup
|
|||
|
||||
setup(
|
||||
name="libretime-analyzer",
|
||||
version="3.0.0-beta.0",
|
||||
version="3.0.0-beta.1",
|
||||
description="Libretime Analyzer",
|
||||
author="LibreTime Contributors",
|
||||
url="https://github.com/libretime/libretime",
|
||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import find_packages, setup
|
|||
|
||||
setup(
|
||||
name="libretime-api-client",
|
||||
version="3.0.0-beta.0",
|
||||
version="3.0.0-beta.1",
|
||||
description="LibreTime API Client",
|
||||
author="LibreTime Contributors",
|
||||
url="https://github.com/libretime/libretime",
|
||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import find_packages, setup
|
|||
|
||||
setup(
|
||||
name="libretime-api",
|
||||
version="3.0.0-beta.0",
|
||||
version="3.0.0-beta.1",
|
||||
description="LibreTime API",
|
||||
author="LibreTime Contributors",
|
||||
url="https://github.com/libretime/libretime",
|
||||
|
|
|
@ -0,0 +1,29 @@
|
|||
---
|
||||
title: LibreTime 3.0.0 beta 1
|
||||
---
|
||||
|
||||
import ReleaseHead from './\_release-head.md';
|
||||
|
||||
<ReleaseHead date='2022-09-23' version='3.0.0-beta.1'/>
|
||||
|
||||
## :sparkling_heart: Contributors
|
||||
|
||||
The LibreTime project wants to thank the following contributors for authoring PRs to this release:
|
||||
|
||||
- @jooola
|
||||
- @paddatrapper
|
||||
|
||||
## :rocket: Features
|
||||
|
||||
- **legacy:** disable services check when missing systemctl ([#2160](https://github.com/libretime/libretime/issues/2160))
|
||||
- **legacy:** invalidate cached assets using md5sum ([#2161](https://github.com/libretime/libretime/issues/2161))
|
||||
- use libretime/icecast container image ([#2165](https://github.com/libretime/libretime/issues/2165))
|
||||
|
||||
## :bug: Bug fixes
|
||||
|
||||
- **legacy:** number of tracks displayed initially ([#2168](https://github.com/libretime/libretime/issues/2168))
|
||||
- **legacy:** rebuild favicon ([#2167](https://github.com/libretime/libretime/issues/2167))
|
||||
- **worker:** configure celery timezone ([#2169](https://github.com/libretime/libretime/issues/2169))
|
||||
- **legacy:** update or remove broken links
|
||||
- **legacy:** prepend file id in tmp upload filename ([#2173](https://github.com/libretime/libretime/issues/2173))
|
||||
- **legacy:** fail when uploading wma files ([#2172](https://github.com/libretime/libretime/issues/2172))
|
|
@ -2,7 +2,7 @@ from setuptools import find_packages, setup
|
|||
|
||||
setup(
|
||||
name="libretime-playout",
|
||||
version="3.0.0-beta.0",
|
||||
version="3.0.0-beta.1",
|
||||
description="LibreTime Playout",
|
||||
author="LibreTime Contributors",
|
||||
url="https://github.com/libretime/libretime",
|
||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import find_packages, setup
|
|||
|
||||
setup(
|
||||
name="libretime-shared",
|
||||
version="3.0.0-beta.0",
|
||||
version="3.0.0-beta.1",
|
||||
description="LibreTime Shared",
|
||||
url="https://github.com/libretime/libretime",
|
||||
author="LibreTime Contributors",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module.exports = {
|
||||
title: "LibreTime",
|
||||
description: "Radio Broadcast & Automation Platform",
|
||||
version: "3.0.0-beta.0",
|
||||
version: "3.0.0-beta.1",
|
||||
website: "https://libretime.org",
|
||||
|
||||
repository: {
|
||||
|
@ -22,7 +22,7 @@ module.exports = {
|
|||
home: {
|
||||
links: [
|
||||
{ label: "Get started 🚀", to: "/docs/admin-manual" },
|
||||
{ label: "Release note", to: "/docs/releases/3.0.0-beta.0" },
|
||||
{ label: "Release note", to: "/docs/releases/3.0.0-beta.1" },
|
||||
],
|
||||
},
|
||||
|
||||
|
|
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 142 KiB After Width: | Height: | Size: 142 KiB |
|
@ -59,7 +59,7 @@ Create a new `release-$VERSION` branch and release commit to prepare a release p
|
|||
```bash
|
||||
git checkout -b "release-$VERSION"
|
||||
export COMMIT_MESSAGE="chore: release $VERSION"
|
||||
git commit --allow-empty "$COMMIT_MESSAGE"
|
||||
git commit --allow-empty --message="$COMMIT_MESSAGE"
|
||||
```
|
||||
|
||||
### 1. Version bump
|
||||
|
@ -152,6 +152,15 @@ git show --quiet
|
|||
git tag -a -m "$VERSION" "$VERSION"
|
||||
```
|
||||
|
||||
Generate the changelog for the newly tagged version:
|
||||
|
||||
```bash
|
||||
make changelog
|
||||
|
||||
git add .
|
||||
git commit -m "chore: generate changelog for $VERSION"
|
||||
```
|
||||
|
||||
Push the tag upstream to finalize the release process:
|
||||
|
||||
```bash
|
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 53 KiB |
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 94 KiB |
|
@ -0,0 +1,29 @@
|
|||
---
|
||||
title: LibreTime 3.0.0 beta 1
|
||||
---
|
||||
|
||||
import ReleaseHead from './\_release-head.md';
|
||||
|
||||
<ReleaseHead date='2022-09-23' version='3.0.0-beta.1'/>
|
||||
|
||||
## :sparkling_heart: Contributors
|
||||
|
||||
The LibreTime project wants to thank the following contributors for authoring PRs to this release:
|
||||
|
||||
- @jooola
|
||||
- @paddatrapper
|
||||
|
||||
## :rocket: Features
|
||||
|
||||
- **legacy:** disable services check when missing systemctl ([#2160](https://github.com/libretime/libretime/issues/2160))
|
||||
- **legacy:** invalidate cached assets using md5sum ([#2161](https://github.com/libretime/libretime/issues/2161))
|
||||
- use libretime/icecast container image ([#2165](https://github.com/libretime/libretime/issues/2165))
|
||||
|
||||
## :bug: Bug fixes
|
||||
|
||||
- **legacy:** number of tracks displayed initially ([#2168](https://github.com/libretime/libretime/issues/2168))
|
||||
- **legacy:** rebuild favicon ([#2167](https://github.com/libretime/libretime/issues/2167))
|
||||
- **worker:** configure celery timezone ([#2169](https://github.com/libretime/libretime/issues/2169))
|
||||
- **legacy:** update or remove broken links
|
||||
- **legacy:** prepend file id in tmp upload filename ([#2173](https://github.com/libretime/libretime/issues/2173))
|
||||
- **legacy:** fail when uploading wma files ([#2172](https://github.com/libretime/libretime/issues/2172))
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 9.6 KiB After Width: | Height: | Size: 9.6 KiB |
Before Width: | Height: | Size: 9.3 KiB After Width: | Height: | Size: 9.3 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 55 KiB |
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 107 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 62 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 69 KiB |
Before Width: | Height: | Size: 65 KiB After Width: | Height: | Size: 65 KiB |
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 102 KiB After Width: | Height: | Size: 102 KiB |
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 64 KiB |
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 101 KiB After Width: | Height: | Size: 101 KiB |
Before Width: | Height: | Size: 108 KiB After Width: | Height: | Size: 108 KiB |