From 67d87e47012b5d3ceba56bdff06a0fa406f4840b Mon Sep 17 00:00:00 2001
From: kaliko <kaliko@azylum.org>
Date: Wed, 28 Apr 2021 17:36:29 +0200
Subject: [PATCH] Releasing 0.17.0

---
 doc/Changelog                         |  4 ++--
 doc/examples/offline_genre_plugin.cfg | 22 ++++++++++++++++++++++
 sima/info.py                          |  2 +-
 3 files changed, 25 insertions(+), 3 deletions(-)
 create mode 100644 doc/examples/offline_genre_plugin.cfg

diff --git a/doc/Changelog b/doc/Changelog
index 2bf9ed9..7bc5ff6 100644
--- a/doc/Changelog
+++ b/doc/Changelog
@@ -1,4 +1,4 @@
-MPD_sima v0.17.0.dev0
+MPD_sima v0.17.0
 
  * New offline autoqueue plugin based on file genre tags only
  * Add randomness in Tags plugin artist selection
@@ -12,7 +12,7 @@ MPD_sima v0.17.0.dev0
  * Use duration instead of time in Track object (closes #37)
  * Use musicbrainz_albumid|trackid tags in Tracks object
 
- -- kaliko <kaliko@azylum.org>  UNRELEASED
+ -- kaliko <kaliko@azylum.org>  Wed, 28 Apr 2021 17:21:39 +0200
 
 MPD_sima v0.16.1
 
diff --git a/doc/examples/offline_genre_plugin.cfg b/doc/examples/offline_genre_plugin.cfg
new file mode 100644
index 0000000..ad43c38
--- /dev/null
+++ b/doc/examples/offline_genre_plugin.cfg
@@ -0,0 +1,22 @@
+[MPD]
+# Uses defaults for MPD connection
+#host = localhost
+#port = 6600
+#password = s3cr3t
+
+[sima]
+# Setup internal plugins
+# Uses Genre plugin falls back to Random if nothing is found then Crop the queue
+internal = Genre, Random, Crop
+history_duration=48             # 48h / 24 = 2 days
+queue_length=2                  # triggers autoqueue when only 2 tracks remains after current
+
+[genre]
+# Look for files with tagged with the same genres
+queue_mode = track
+single_album = false
+track_to_add = 1
+
+[crop]
+# keep 30 played tracks in playlist
+consume=30
diff --git a/sima/info.py b/sima/info.py
index a123cdf..59403e1 100644
--- a/sima/info.py
+++ b/sima/info.py
@@ -12,7 +12,7 @@ short.
 """
 
 
-__version__ = '0.17.0.dev0'
+__version__ = '0.17.0'
 __author__ = 'kaliko'
 __email__ = 'kaliko@azylum.org'
 __url__ = 'git://git.kaliko.me/sima.git'
-- 
2.39.5