Skip to content

Commit fe703ed

Browse files
committed
Invenio-Query-Parser v0.2.0
Signed-off-by: Jiri Kuncar <[email protected]>
1 parent dcc411d commit fe703ed

File tree

8 files changed

+86
-6
lines changed

8 files changed

+86
-6
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# This file is part of Invenio Query Parser.
1+
# This file is part of Invenio-Query-Parser.
22
# Copyright (C) 2014 CERN.
33
#
4-
# Invenio Query Parser is free software; you can redistribute it and/or
4+
# Invenio-Query-Parser is free software; you can redistribute it and/or
55
# modify it under the terms of the GNU General Public License as
66
# published by the Free Software Foundation; either version 2 of the
77
# License, or (at your option) any later version.
88
#
9-
# Invenio Query Parser is distributed in the hope that it will be useful,
9+
# Invenio-Query-Parser is distributed in the hope that it will be useful,
1010
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1111
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1212
# General Public License for more details.

AUTHORS.rst

+1
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ Contact us at `[email protected]
3232
- Alessio Deiana <https://github.com/osso>
3333
- Federico Poli <https://github.com/fpoli>
3434
- Jiri Kuncar <https://github.com/jirikuncar>
35+
- Tibor Simko <https://github.com/tiborsimko>

CHANGES.rst

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Changes
2+
=======
3+
4+
Version 0.2.0 (released 2014-12-10):
5+
6+
- Initial public release.
7+
- Adds Python2/Python3 compatibility layer. (#2)
8+
- Adds new Sphinx documentation page. (#3)
9+
- Adds simple inheritance for visitor pattern and separates SPIRES syntax
10+
parser to contrib module. (#7)
11+
12+
Version 0.1.0 (release 2014-10-13):
13+
14+
- Initial private release. Includes code developed by Alessio Deiana and
15+
Federico Poli.

COPYING LICENSE

File renamed without changes.

MANIFEST.in

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# This file is part of Invenio-Query-Parser.
2+
# Copyright (C) 2014 CERN.
3+
#
4+
# Invenio-Query-Parser is free software; you can redistribute it and/or
5+
# modify it under the terms of the GNU General Public License as
6+
# published by the Free Software Foundation; either version 2 of the
7+
# License, or (at your option) any later version.
8+
#
9+
# Invenio-Query-Parser is distributed in the hope that it will be useful,
10+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12+
# General Public License for more details.
13+
#
14+
# You should have received a copy of the GNU General Public License
15+
# along with Invenio; if not, write to the Free Software Foundation, Inc.,
16+
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
17+
#
18+
# In applying this licence, CERN does not waive the privileges and immunities
19+
# granted to it by virtue of its status as an Intergovernmental Organization
20+
# or submit itself to any jurisdiction.
21+
22+
include LICENSE
23+
include tox.ini
24+
include docs/*.rst docs/*.py docs/Makefile
25+
include *.rst
26+
include tests/*.ini tests/*.py
27+
include .coveragerc .travis.yml pytest.ini
28+
include *.py *.sh

RELEASE-NOTES.rst

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
=========================================
2+
Invenio-Query-Parser v0.2.0 is released
3+
=========================================
4+
5+
Invenio-Query-Parser v0.2.0 was released on December 10, 2014.
6+
7+
About
8+
-----
9+
10+
Search query parser supporting Invenio and SPIRES search syntax.
11+
12+
What's new
13+
----------
14+
15+
- Initial public release.
16+
- Adds Python2/Python3 compatibility layer. (#2)
17+
- Adds new Sphinx documentation page. (#3)
18+
- Adds simple inheritance for visitor pattern and separates SPIRES syntax
19+
parser to contrib module. (#7)
20+
21+
Installation
22+
------------
23+
24+
$ pip install invenio-query-parser
25+
26+
Documentation
27+
-------------
28+
29+
http://invenio-query-parser.readthedocs.org/en/v0.2.0
30+
31+
Good luck and thanks for using Invenio-Query-Parser.
32+
33+
| Invenio Development Team
34+
35+
| IRC: #invenio on irc.freenode.net
36+
| Twitter: http://twitter.com/inveniosoftware
37+
| GitHub: https://github.com/inveniosoftware/invenio-query-parser

docs/index.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,7 @@ API
8989
:members:
9090
:undoc-members:
9191

92-
..
93-
.. include:: ../CHANGES
92+
.. include:: ../CHANGES.rst
9493

9594
.. include:: ../CONTRIBUTING.rst
9695

invenio_query_parser/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@
3030
# Do not change the format of this next line. Doing so risks breaking
3131
# setup.py and docs/conf.py
3232

33-
__version__ = "0.1.1.dev20141015"
33+
__version__ = "0.2.0"

0 commit comments

Comments
 (0)