diff --git a/Changelog b/Changelog index ea1eb157..0cd8b33e 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,11 @@ +2023-07-15 s-n-g + * version 0.9.2.13 + * all search widgets will save up to 20 of their last search terms + * VLC will now save its default volume + * adding --record command line parameter + * \l will toggle the "Open last playlist" config setting + * updating docs + 2023-07-01 s-n-g * version 0.9.2.12 * Implementing VLC recorder (not for Windows) diff --git a/README.html b/README.html index 469a1fe9..239c3706 100644 --- a/README.html +++ b/README.html @@ -208,6 +208,14 @@

Requirements Changelog Top

 
+2023-07-15 s-n-g
+    * version 0.9.2.13
+    * all search widgets will save up to 20 of their last search terms
+    * VLC will now save its default volume
+    * adding --record command line parameter
+    * \l will toggle the "Open last playlist" config setting
+    * updating docs
+
 2023-07-01 s-n-g
     * version 0.9.2.12
     * Implementing VLC recorder (not for Windows)
diff --git a/pyproject.toml b/pyproject.toml
index 064c0348..27b3ec2e 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [project]
 name = "pyradio"
-version = "0.9.2.12"
+version = "0.9.2.13"
 authors = [
   { name="Ben Dowling", email="ben.m.dowling@gmail.com" },
   { name="Spiros Georgaras", email="sng@hellug.gr" },
diff --git a/pyradio/__init__.py b/pyradio/__init__.py
index e9e32037..0f4a7b29 100644
--- a/pyradio/__init__.py
+++ b/pyradio/__init__.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 " pyradio -- Console radio player. "
 
-version_info = (0, 9, 2, 12)
+version_info = (0, 9, 2, 13)
 
 # Set it to True if new stations have been
 # added to the package's stations.csv
diff --git a/pyradio/install.py b/pyradio/install.py
index 3b39c62d..a9585a1c 100755
--- a/pyradio/install.py
+++ b/pyradio/install.py
@@ -15,7 +15,7 @@
 ''' This is PyRadio version this
     install.py was released for
 '''
-PyRadioInstallPyReleaseVersion = '0.9.2.12'
+PyRadioInstallPyReleaseVersion = '0.9.2.13'
 
 import locale
 locale.setlocale(locale.LC_ALL, "")