Skip to content

Commit

Permalink
new version number and added changelog in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Chiroux committed Oct 16, 2017
1 parent 58c1ec4 commit 8ca6630
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Table of Contents
5. Formal Language Specification


Introducton
-----------
Introduction
------------

PyFlwor is a query language for querying python object collections. While
Python has many interesting ways of persisting objects, it does not have (to my
Expand Down Expand Up @@ -659,3 +659,18 @@ For Reference Some Named Regular Expresssions:
Where : OrExpr
WhereExpr : WHERE Where

Changelog
---------

### Path Expressions

### v1.2

* added a new query syntax to query in and not in static list

hello['foo' in ['foo','bar']]
hello['foo' not in ['foo','bar']]

### v1.1

* python3 compatibility
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from distutils.core import setup

setup(name='pyflwor',
version='1.1',
version='1.2',
description=(
'A object query system for arbitrary python objects..'
),
Expand Down

0 comments on commit 8ca6630

Please sign in to comment.