diff --git a/dist/lastfm-0.1-1.noarch.rpm b/dist/lastfm-0.1-1.noarch.rpm index 78596c4..2e76501 100644 Binary files a/dist/lastfm-0.1-1.noarch.rpm and b/dist/lastfm-0.1-1.noarch.rpm differ diff --git a/dist/lastfm-0.1-1.src.rpm b/dist/lastfm-0.1-1.src.rpm index db62b6b..3396e3e 100644 Binary files a/dist/lastfm-0.1-1.src.rpm and b/dist/lastfm-0.1-1.src.rpm differ diff --git a/dist/lastfm-0.1-py2.5.egg b/dist/lastfm-0.1-py2.5.egg index 5aa7dea..72e7690 100644 Binary files a/dist/lastfm-0.1-py2.5.egg and b/dist/lastfm-0.1-py2.5.egg differ diff --git a/dist/lastfm-0.1.tar.gz b/dist/lastfm-0.1.tar.gz index caa47f4..0f1f5db 100644 Binary files a/dist/lastfm-0.1.tar.gz and b/dist/lastfm-0.1.tar.gz differ diff --git a/dist/lastfm-0.1.win32-py2.5.msi b/dist/lastfm-0.1.win32-py2.5.msi index bb21043..a229f19 100644 Binary files a/dist/lastfm-0.1.win32-py2.5.msi and b/dist/lastfm-0.1.win32-py2.5.msi differ diff --git a/dist/lastfm-0.1.zip b/dist/lastfm-0.1.zip index 4e8f716..29b01a6 100644 Binary files a/dist/lastfm-0.1.zip and b/dist/lastfm-0.1.zip differ diff --git a/dist/python-lastfm_0.1-1_all.deb b/dist/python-lastfm_0.1-1_all.deb index 5fa2edc..da43261 100644 Binary files a/dist/python-lastfm_0.1-1_all.deb and b/dist/python-lastfm_0.1-1_all.deb differ diff --git a/setup.py b/setup.py index d9f045f..a6d1d01 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" METADATA = dict( diff --git a/src/__init__.py b/src/__init__.py index 58a847e..b3b2f47 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" from album import Album diff --git a/src/album.py b/src/album.py index f18f2ea..ffbb196 100644 --- a/src/album.py +++ b/src/album.py @@ -1,7 +1,7 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" from base import LastfmBase diff --git a/src/api.py b/src/api.py index 22754ec..e84a03b 100644 --- a/src/api.py +++ b/src/api.py @@ -1,7 +1,7 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" class Api(object): diff --git a/src/artist.py b/src/artist.py index 3da4e30..379d94b 100644 --- a/src/artist.py +++ b/src/artist.py @@ -1,7 +1,7 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" from base import LastfmBase diff --git a/src/auth.py b/src/auth.py index 3b87f1e..ae17787 100644 --- a/src/auth.py +++ b/src/auth.py @@ -1,5 +1,5 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" \ No newline at end of file diff --git a/src/base.py b/src/base.py index d2885aa..58b8b64 100644 --- a/src/base.py +++ b/src/base.py @@ -1,7 +1,7 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" try: diff --git a/src/error.py b/src/error.py index 522df33..add6a69 100644 --- a/src/error.py +++ b/src/error.py @@ -1,7 +1,7 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" class LastfmError(Exception): diff --git a/src/event.py b/src/event.py index 088da01..982dcb5 100644 --- a/src/event.py +++ b/src/event.py @@ -1,7 +1,7 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" from base import LastfmBase diff --git a/src/filecache.py b/src/filecache.py index 3f25062..a97cafc 100644 --- a/src/filecache.py +++ b/src/filecache.py @@ -1,7 +1,7 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" import md5 diff --git a/src/geo.py b/src/geo.py index 7c54fd2..0fee618 100644 --- a/src/geo.py +++ b/src/geo.py @@ -1,7 +1,7 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" from base import LastfmBase diff --git a/src/group.py b/src/group.py index 3b8b863..656356a 100644 --- a/src/group.py +++ b/src/group.py @@ -1,7 +1,7 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" from base import LastfmBase diff --git a/src/playlist.py b/src/playlist.py index 3768e05..d26e635 100644 --- a/src/playlist.py +++ b/src/playlist.py @@ -1,7 +1,7 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" from base import LastfmBase diff --git a/src/registry.py b/src/registry.py index 612ff91..442c5b8 100644 --- a/src/registry.py +++ b/src/registry.py @@ -1,7 +1,7 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" from album import Album diff --git a/src/stats.py b/src/stats.py index fa4383e..4d75850 100644 --- a/src/stats.py +++ b/src/stats.py @@ -1,7 +1,7 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" class Stats(object): diff --git a/src/tag.py b/src/tag.py index a8436b5..fc06338 100644 --- a/src/tag.py +++ b/src/tag.py @@ -1,7 +1,7 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" from base import LastfmBase diff --git a/src/tasteometer.py b/src/tasteometer.py index 8847853..25b6496 100644 --- a/src/tasteometer.py +++ b/src/tasteometer.py @@ -1,7 +1,7 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" class Tasteometer(object): diff --git a/src/track.py b/src/track.py index 51226bb..199b7e9 100644 --- a/src/track.py +++ b/src/track.py @@ -1,7 +1,7 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" from base import LastfmBase diff --git a/src/user.py b/src/user.py index c02b6e9..fb7d119 100644 --- a/src/user.py +++ b/src/user.py @@ -1,7 +1,7 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" from base import LastfmBase diff --git a/src/weeklychart.py b/src/weeklychart.py index ece47f1..d58cf59 100644 --- a/src/weeklychart.py +++ b/src/weeklychart.py @@ -1,7 +1,7 @@ #!/usr/bin/env python __author__ = "Abhinav Sarkar " -__version__ = "0.1" +__version__ = "0.2" __license__ = "GNU Lesser General Public License" from base import LastfmBase