Skip to content

Commit

Permalink
Bump version and update readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
abdullahselek committed Oct 26, 2019
1 parent dffca4e commit a2b961a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions README.rst
Expand Up @@ -60,7 +60,7 @@ Sample
# "Humphrey Bogart" is a name, but not an entity.
# Let's find the entities with this name in our dataset.
# Follow links that are pointing In to our "Humphrey Bogart" node with the predicate "name".
query = g.V("Humphrey Bogart").In("name").All()
query = g.V("Humphrey Bogart").In("<name>").All()
response = client.Send(query)
# Notice that "name" is a generic predicate in our dataset.
Expand Down Expand Up @@ -98,7 +98,9 @@ Sample
Bugs
----

If you encounter a bug, performance issue, or malfunction, please add an `Issues <https://github.com/ziyasal/pyley/issues>`_ with steps on how to reproduce the problem.
If you encounter a bug, performance issue, or malfunction, please add an `Issues <https://github.com/ziyasal/pyley/issues>`_ with steps on how to reproduce the problem
or feel to free to open a pull request.


TODO
----
Expand Down
2 changes: 1 addition & 1 deletion pyley/__init__.py
@@ -1,7 +1,7 @@
"""pyley Python client for an open-source graph database Cayley"""

__title__ = 'pyley'
__version__ = '0.2.2.1'
__version__ = '0.2.2.2'
__author__ = 'Ziya SARIKAYA @ziyasal'
__email__ = 'sarikayaziya@gmail.com',
__license__ = 'MIT License'
Expand Down

0 comments on commit a2b961a

Please sign in to comment.