Skip to content

Commit

Permalink
Releasing 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
krischer committed Sep 30, 2015
1 parent 2183958 commit 37d3935
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
---------

* **Pyflex 0.1.4** *Sep 30th 2015*
* Minor change to adapt tests to the latest ObsPy version.
* Dropped official support for Python 2.6. It still works with it for now but I don't plan on further supporting it.

* **Pyflex 0.1.3** *Dez 10th 2014*
* Rejecting windows with very early start or very late end times. Greatly speeds up the algorithm.
* New config parameter ``max_time_before_first_arrival``.
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
# The short X.Y version.
version = '0.1'
# The full version, including alpha/beta/rc tags.
release = '0.1.3'
release = '0.1.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def read(*names, **kwargs):

setup(
name="pyflex",
version="0.1.3",
version="0.1.4",
license='GNU General Public License, Version 3 (GPLv3)',
description="Python port of the FLEXWIN package",
long_description=long_description,
Expand Down
2 changes: 1 addition & 1 deletion src/pyflex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class PyflexWarning(UserWarning):
Station = collections.namedtuple("Station", ["latitude", "longitude"])


__version__ = "0.1.3"
__version__ = "0.1.4"


# Setup the logger.
Expand Down

0 comments on commit 37d3935

Please sign in to comment.