Skip to content

Commit 37d3935

Browse files
committed
Releasing 0.1.4
1 parent 2183958 commit 37d3935

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
---------
33

4+
* **Pyflex 0.1.4** *Sep 30th 2015*
5+
* Minor change to adapt tests to the latest ObsPy version.
6+
* Dropped official support for Python 2.6. It still works with it for now but I don't plan on further supporting it.
7+
48
* **Pyflex 0.1.3** *Dez 10th 2014*
59
* Rejecting windows with very early start or very late end times. Greatly speeds up the algorithm.
610
* New config parameter ``max_time_before_first_arrival``.

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
version = '0.1'
6363
# The full version, including alpha/beta/rc tags.
64-
release = '0.1.3'
64+
release = '0.1.4'
6565

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def read(*names, **kwargs):
2929

3030
setup(
3131
name="pyflex",
32-
version="0.1.3",
32+
version="0.1.4",
3333
license='GNU General Public License, Version 3 (GPLv3)',
3434
description="Python port of the FLEXWIN package",
3535
long_description=long_description,

src/pyflex/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class PyflexWarning(UserWarning):
3838
Station = collections.namedtuple("Station", ["latitude", "longitude"])
3939

4040

41-
__version__ = "0.1.3"
41+
__version__ = "0.1.4"
4242

4343

4444
# Setup the logger.

0 commit comments

Comments
 (0)