From a96e0abce0c07017a37a22d944b9f88d7ecf1f30 Mon Sep 17 00:00:00 2001 From: thebigmunch Date: Mon, 22 Jul 2019 06:14:27 -0400 Subject: [PATCH] Release 4.1.0 --- CHANGELOG.md | 7 ++++++- pyproject.toml | 2 +- src/google_music_scripts/__about__.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55970c0..34df595 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,12 @@ This project adheres to [Semantic Versioning](https://semver.org). ## [Unreleased](https://github.com/thebigmunch/google-music-scripts/tree/master) -[Commits](https://github.com/thebigmunch/google-music-scripts/compare/4.0.1...master) +[Commits](https://github.com/thebigmunch/google-music-scripts/compare/4.1.0...master) + + +## [4.1.0](https://github.com/thebigmunch/google-music-scripts/releases/tag/4.1.0) (2019-07-22) + +[Commits](https://github.com/thebigmunch/google-music-scripts/compare/4.0.1...4.1.0) ### Added diff --git a/pyproject.toml b/pyproject.toml index 841bdb2..e37ed9b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "google-music-scripts" description = "A CLI utility for interacting with Google Music." -version = "4.0.1" +version = "4.1.0" license = "MIT" diff --git a/src/google_music_scripts/__about__.py b/src/google_music_scripts/__about__.py index 37cca37..a9634bf 100644 --- a/src/google_music_scripts/__about__.py +++ b/src/google_music_scripts/__about__.py @@ -14,7 +14,7 @@ __summary__ = 'A collection of scripts to interact with Google Music.' __url__ = 'https://github.com/thebigmunch/google-music-scripts' -__version__ = '4.0.1' +__version__ = '4.1.0' __version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit()) __author__ = 'thebigmunch'