Skip to content

Commit 1b7bac3

Browse files
committed
Version bump
1 parent 79bcc0c commit 1b7bac3

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Changelog
44
=========
55

6-
0.0.7 (2015-08-28)
6+
0.0.8 (2015-08-28)
77
------------------
88
* ``0.0.5`` and ``0.0.6`` was released with broken .tar.gz on pypi, just a build fix
99

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
# built documents.
5151
#
5252
# The short X.Y version.
53-
version = '0.0.7'
53+
version = '0.0.8'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '0.0.7'
55+
release = '0.0.8'
5656

5757
# The language for content autogenerated by Sphinx. Refer to documentation
5858
# for a list of supported languages.

elasticsearch_dsl/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
7rom .query import Q
1+
from .query import Q
22
from .filter import F
33
from .aggs import A
44
from .function import SF
@@ -10,6 +10,6 @@
1010
from .analysis import analyzer, token_filter, char_filter, tokenizer
1111
from .faceted_search import FacetedSearch
1212

13-
VERSION = (0, 0, 6)
13+
VERSION = (0, 0, 8)
1414
__version__ = VERSION
1515
__versionstr__ = '.'.join(map(str, VERSION))

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from os.path import join, dirname
44
from setuptools import setup, find_packages
55

6-
VERSION = (0, 0, 7)
6+
VERSION = (0, 0, 8)
77
__version__ = VERSION
88
__versionstr__ = '.'.join(map(str, VERSION))
99

0 commit comments

Comments
 (0)