Selaa lähdekoodia

raise version number in preparation for the 0.9.2 release

Helmut Pozimski 9 vuotta sitten
vanhempi
commit
f62c0bdd47
5 muutettua tiedostoa jossa 11 lisäystä ja 5 poistoa
  1. 6 0
      CHANGELOG
  2. 2 2
      README
  3. 1 1
      doc/conf.py
  4. 1 1
      setup.py
  5. 1 1
      stov

+ 6 - 0
CHANGELOG

@@ -1,3 +1,9 @@
+0.9.3
+---
+
+* Improved coding style using reports from pep8 and pylint
+* Dropped support for python 2, stov now requires python 3 to run
+
 0.9.2
 ---
 

+ 2 - 2
README

@@ -10,8 +10,8 @@ see ./stov --help
 
 stov depends on the following software to be installed:
 
-	* Python 2.7 or higher (python 3.x should work but is not officially supported, this is a release goal for 1.0)
-	* youtube-dl (get it from http://rg3.github.com/youtube-dl/ if you don't have it yet, it is needed to download videos and also for the "no API"-mode)
+	* Python 3.0 or higher
+	* youtube-dl (get it from http://rg3.github.com/youtube-dl/ if you don't have it yet, it is needed to download videos and retrieve information about them from youtube)
 	* lxml module for python
 
 === COPYING ===

+ 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.2'
+release = '0.9.3'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.

+ 1 - 1
setup.py

@@ -24,7 +24,7 @@ from distutils.core import setup
 
 setup(
     name="stov",
-    version="0.9.2",
+    version="0.9.3",
     author="Helmut Pozimski",
     author_email="helmut@pozimski.de",
     description=("a program to subscribe to channels and users from youtube and"

+ 1 - 1
stov

@@ -672,7 +672,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.2")
+    LOGGER.info("0.9.3")
 else:
     PARSER.print_help()