Skip to content

Commit efeb52f

Browse files
committed
Version bump
1 parent 8990ec7 commit efeb52f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Changelog.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Changelog
44
=========
55

6-
0.0.9 (dev)
7-
-----------
6+
0.0.9 (2015-10-26)
7+
------------------
88
* ``FacetedSearch`` now uses its own ``Facet`` class instead of built in
99
aggregations
1010

docs/conf.py

+2-2
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.8'
53+
version = '0.0.9'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '0.0.8'
55+
release = '0.0.9'
5656

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

elasticsearch_dsl/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
from .analysis import analyzer, token_filter, char_filter, tokenizer
1111
from .faceted_search import *
1212

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

setup.py

+1-1
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, 8)
6+
VERSION = (0, 0, 9)
77
__version__ = VERSION
88
__versionstr__ = '.'.join(map(str, VERSION))
99

0 commit comments

Comments
 (0)