From 59d3ad6064095bfcca33de1c31bfd852579306d9 Mon Sep 17 00:00:00 2001 From: Robin Schulz Date: Fri, 19 Dec 2025 01:15:27 +0100 Subject: [PATCH] Fixed relative links in README that didn't work on PyPI --- CHANGELOG.md | 6 ++++++ README.md | 8 ++++---- pyproject.toml | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce559ca..0d579e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.2] - 2025-12-19 + +### Fixed + +- Fixed relative links in README that didn't work on PyPI + ## [0.1.1] - 2025-12-19 ### Added diff --git a/README.md b/README.md index 05292f9..c8c2778 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ Exit codes: `0` on success, `1` on error. ## Configuration -SpotiSync uses a `config.yaml` file. The setup wizard creates this for you, or see [`config.example.yaml`](config.example.yaml) for all options. +SpotiSync uses a `config.yaml` file. The setup wizard creates this for you, or see [`config.example.yaml`](https://github.com/bulletinmybeard/spotisync/blob/master/config.example.yaml) for all options. **Multiple sync groups** - Sync different sources to different targets: @@ -410,9 +410,9 @@ Reload: `. $PROFILE` ## Links -- [Configuration Example](config.example.yaml) -- [Changelog](CHANGELOG.md) +- [Configuration Example](https://github.com/bulletinmybeard/spotisync/blob/master/config.example.yaml) +- [Changelog](https://github.com/bulletinmybeard/spotisync/blob/master/CHANGELOG.md) ## License -MIT License - see the [LICENSE](LICENSE) file for details. +MIT License - see the [LICENSE](https://github.com/bulletinmybeard/spotisync/blob/master/LICENSE) file for details. diff --git a/pyproject.toml b/pyproject.toml index b686257..2d9b9bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "spotisync" -version = "0.1.1" +version = "0.1.2" description = "SpotiSync - Smart syncing for Spotify playlists" authors = ["Robin Schulz "] readme = "README.md"