Skip to content

Commit

Permalink
Start 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
samirelanduk committed Apr 3, 2019
1 parent f2b8271 commit 13e3ce8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/source/conf.py
Expand Up @@ -24,9 +24,9 @@
author = 'Sam Ireland'

# The short X.Y version
version = '0.1'
version = '0.2'
# The full version, including alpha/beta/rc tags
release = '0.1.2'
release = '0.2.0'


# -- General configuration ---------------------------------------------------
Expand Down
5 changes: 2 additions & 3 deletions kirjava.py
@@ -1,6 +1,6 @@
"""The kirjava library."""

__version__ = "0.1.2"
__version__ = "0.2.0"
__author__ = "Sam Ireland"

import requests
Expand All @@ -12,8 +12,7 @@ class Client:
The URL that serves the GraphQL content is given on creating the Client.
:param str url: The URL of the GraphQL server to interact with.
:param dict headers: Any additional HTTP headers."""
:param str url: The URL of the GraphQL server to interact with."""

def __init__(self, url):
self._url = url
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -5,7 +5,7 @@

setup(
name="kirjava",
version="0.1.2",
version="0.2.0",
description="A Python GraphQL client.",
long_description=long_description,
long_description_content_type="text/x-rst",
Expand Down

0 comments on commit 13e3ce8

Please sign in to comment.