Skip to content

Commit

Permalink
bump version and add sphinx docs link/badge
Browse files Browse the repository at this point in the history
  • Loading branch information
swistakm committed Jun 15, 2015
1 parent a52de30 commit 15a9304
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[![Build Status](https://travis-ci.org/swistakm/solrq.svg?branch=master)](https://travis-ci.org/swistakm/solrq)
[![Coverage Status](https://coveralls.io/repos/swistakm/solrq/badge.svg)](https://coveralls.io/r/swistakm/solrq)
[![Documentation Status](https://readthedocs.org/projects/solrq/badge/?version=latest)](https://readthedocs.org/projects/solrq/?badge=latest)

# solrq
`solr` is a Python Solr query utility. It helps making query strings for Solr
Expand Down Expand Up @@ -51,8 +52,8 @@ of reserved characters so you must take care of that by yourself. This is why

## quick reference

Full reference can be found in API reference documentation but here is a short
reference.
Full reference can be found in [API reference documentation page](http://solrq.readthedocs.org/en/latest/api-reference.html)
but here is a short reference.

### boosting queries

Expand Down
2 changes: 1 addition & 1 deletion src/solrq/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
VERSION = (0, 0, 2) # PEP 386 # noqa
VERSION = (0, 0, 3) # PEP 386 # noqa
__version__ = ".".join([str(x) for x in VERSION]) # noqa

import re
Expand Down

0 comments on commit 15a9304

Please sign in to comment.