Przeglądaj źródła

update version number for release 0.9.2

Helmut Pozimski 9 lat temu
rodzic
commit
0cbdc661f1
5 zmienionych plików z 24 dodań i 4 usunięć
  1. 8 0
      CHANGELOG
  2. 12 0
      debian/changelog
  3. 1 1
      doc/conf.py
  4. 2 2
      setup.py
  5. 1 1
      stov

+ 8 - 0
CHANGELOG

@@ -1,3 +1,11 @@
+0.9.2
+---
+
+* Removed support for Youtube API since Google discontinued v2
+* Removed configuration parameter "use_api" due to the above listed change
+* Adapted calls to youtube-dl to support the latest version
+* Support for python 2 will be removed in the upcoming version, stick with this version or switch to python 3
+
 0.9.1
 ---
 

+ 12 - 0
debian/changelog

@@ -1,3 +1,15 @@
+stov (0.9.2-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Helmut Pozimski <helmut@pozimski.eu>  Tue, 12 May 2015 21:03:00 +0200
+
+stov (0.9.2~beta1-1) unstable; urgency=low
+
+  * New upstream beta
+
+ -- Helmut Pozimski <helmut@pozimski.eu>  Sun, 10 May 2015 21:39:00 +0200
+
 stov (0.9.1-1) unstable; urgency=low
 
   * New upstream release

+ 1 - 1
doc/conf.py

@@ -54,7 +54,7 @@ copyright = (u"2013, Helmut Pozimski License GPLv2, GNU GPL version 2 "
 # The short X.Y version.
 version = '0.9'
 # The full version, including alpha/beta/rc tags.
-release = '0.9.1'
+release = '0.9.2'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.

+ 2 - 2
setup.py

@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 
 #
-#        This file is part of stov, written by Helmut Pozimski 2012-2013.
+#        This file is part of stov, written by Helmut Pozimski 2012-2015.
 #
 #       stov is free software: you can redistribute it and/or modify
 #       it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@ from distutils.core import setup
 
 setup(
     name="stov",
-    version="0.9.1",
+    version="0.9.2",
     author="Helmut Pozimski",
     author_email="helmut@pozimski.de",
     description=("a program to subscribe to channels and users from youtube and"

+ 1 - 1
stov

@@ -709,7 +709,7 @@ elif options.license is True:
     You should have received a copy of the GNU General Public License
     along with stov.  If not, see <http://www.gnu.org/licenses/>.""")
 elif options.version is True:
-    logger.info("0.9.1")
+    logger.info("0.9.2")
 else:
     parser.print_help()