From 2f07efd21521e4d14818ff2ced42c3e0e6c7ba4c Mon Sep 17 00:00:00 2001 From: redxef Date: Mon, 20 Jan 2025 21:18:07 +0100 Subject: [PATCH] ci: prepare for release. --- Jellyfin.Plugin.SmartPlaylist/build.yaml | 12 +++++++++++- .../jellyfin-smart-playlist.csproj | 2 +- README.md | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/Jellyfin.Plugin.SmartPlaylist/build.yaml b/Jellyfin.Plugin.SmartPlaylist/build.yaml index a210aea..4a974c2 100644 --- a/Jellyfin.Plugin.SmartPlaylist/build.yaml +++ b/Jellyfin.Plugin.SmartPlaylist/build.yaml @@ -1,6 +1,6 @@ name: Smart Playlist guid: dd2326e3-4d3e-4bfc-80e6-28502c1131df -version: 0.5.0.0 +version: 0.5.1.0 targetAbi: 10.10.3.0 framework: net8.0 owner: redxef @@ -14,6 +14,16 @@ artifacts: - jellyfin-smart-playlist.dll - YamlDotNet.dll changelog: | + ## v0.5.1.0 + - Add multiple new functions: + - `length` computes the length of a list + - `split` splits off n elements of the given list `(split '(1 2 3 4 5) 3) -> ((1 2 3) 4 5)` + - `reverse` reverses a list + + **Fixes**: + - The configuration can now be updated again. + The relevant code got lost during the smart collection restructuring. + ## v0.5.0.0 - Add support for collections - Add a playground to test lisp code, the playground has diff --git a/Jellyfin.Plugin.SmartPlaylist/jellyfin-smart-playlist.csproj b/Jellyfin.Plugin.SmartPlaylist/jellyfin-smart-playlist.csproj index 3177a9c..56316eb 100644 --- a/Jellyfin.Plugin.SmartPlaylist/jellyfin-smart-playlist.csproj +++ b/Jellyfin.Plugin.SmartPlaylist/jellyfin-smart-playlist.csproj @@ -5,7 +5,7 @@ Jellyfin.Plugin.SmartPlaylist enable enable - 0.5.0.0 + 0.5.1.0 diff --git a/README.md b/README.md index 2a3565d..a901f37 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Smart playlists with Lisp filter engine. This readme contains instructions for the most recent changes in the development branch (`main`). To view the file appropriate for your version select the tag corresponding to your version. -The latest version is [v0.5.0.0](https://gitea.redxef.at/redxef/jellyfin-smart-playlist/src/tag/v0.5.0.0). +The latest version is [v0.5.1.0](https://gitea.redxef.at/redxef/jellyfin-smart-playlist/src/tag/v0.5.1.0). ![configuration page](config.png)