Skip to content

Commit

Permalink
Bump to 1.4, contains fix to show language ID in thetvdb.com ConsoleU…
Browse files Browse the repository at this point in the history
…I links
  • Loading branch information
dbr committed Jan 1, 2010
1 parent d0ee5c2 commit 2dce3ff
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cache.py
Expand Up @@ -13,7 +13,7 @@
from __future__ import with_statement

__author__ = "dbr/Ben"
__version__ = "1.3"
__version__ = "1.4"

import os
import time
Expand Down
2 changes: 1 addition & 1 deletion setup_tvdb_api.py
@@ -1,7 +1,7 @@
from setuptools import setup
setup(
name = 'tvdb_api',
version='1.3',
version='1.4',

author='dbr/Ben',
description='Interface to thetvdb.com',
Expand Down
4 changes: 2 additions & 2 deletions setup_tvnamer.py
@@ -1,7 +1,7 @@
from setuptools import setup
setup(
name = 'tvnamer',
version='1.3',
version='1.4',

author='dbr/Ben',
description='Automatic TV episode namer',
Expand All @@ -20,7 +20,7 @@
]
},

install_requires = ['tvdb_api==1.3'],
install_requires = ['tvdb_api==1.4'],

classifiers=[
"Environment :: Console",
Expand Down
2 changes: 1 addition & 1 deletion tvdb_api.py
Expand Up @@ -16,7 +16,7 @@
u'Cabin Fever'
"""
__author__ = "dbr/Ben"
__version__ = "1.3"
__version__ = "1.4"

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion tvdb_exceptions.py
Expand Up @@ -10,7 +10,7 @@
"""

__author__ = "dbr/Ben"
__version__ = "1.3"
__version__ = "1.4"

__all__ = ["tvdb_error", "tvdb_userabort", "tvdb_shownotfound",
"tvdb_seasonnotfound", "tvdb_episodenotfound", "tvdb_attributenotfound"]
Expand Down
2 changes: 1 addition & 1 deletion tvdb_ui.py
Expand Up @@ -44,7 +44,7 @@
"""

__author__ = "dbr/Ben"
__version__ = "1.3"
__version__ = "1.4"

from tvdb_exceptions import tvdb_userabort

Expand Down
2 changes: 1 addition & 1 deletion tvnamer.py
Expand Up @@ -13,7 +13,7 @@
"""

__author__ = "dbr/Ben"
__version__ = "1.3"
__version__ = "1.4"

import os, sys, re
from optparse import OptionParser
Expand Down

0 comments on commit 2dce3ff

Please sign in to comment.