Skip to content

Commit fa0d55f

Browse files
committed
release 0.3 stable, go check it
1 parent 31cdc15 commit fa0d55f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ Example Usage
2828

2929
.. code-block:: python
3030
31-
from gist import Gist
31+
from simplegist import SimpleGist
3232
33-
GHgist = Gist(username='USERNAME',api_token='API_TOKEN')
33+
GHgist = Simplegist(username='USERNAME',api_token='API_TOKEN')
3434
# or provide USERNAME and API_TOKEN in config.py file, so just, GHgist = Gist()
3535
3636
# creating gist and returning url, script, clone link

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
setup(
1212
name = 'simplegist',
1313
packages = ['simplegist'],
14-
version = '0.2',
14+
version = '0.3',
1515
install_requires=required,
1616
description = 'Python wrapper for Gist ',
1717
long_description=open('README.rst').read(),
1818
author = 'Varun Malhotra',
1919
author_email = '[email protected]',
2020
url = 'https://github.com/softvar/gist',
21-
download_url = 'https://github.com/softvar/GistApi-Wrapper-python/tarball/0.2',
21+
download_url = 'https://github.com/softvar/GistApi-Wrapper-python/tarball/0.3',
2222
keywords = ['gist', 'github', 'API'],
2323
license = 'MIT',
2424
classifiers = (

0 commit comments

Comments
 (0)