Skip to content

Commit 4891a22

Browse files
committed
Releasing v0.1.3
1 parent 8c16961 commit 4891a22

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

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

4+
* **Pyflex 0.1.3** *Dez 10th 2014*
5+
* Rejecting windows with very early start or very late end times. Greatly speeds up the algorithm.
6+
* New config parameter ``max_time_before_first_arrival``.
7+
* New optional time normalized energy signal to noise ratio. More resilient to random wiggles before the first arrival.
8+
* New config parameter ``window_signal_to_noise_type``.
9+
410
* **Pyflex 0.1.2** *Nov 17th 2014*
511
* Support for (de)serializing windows to and from JSON.
612
* Much faster STA/LTA computation.

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.2'
64+
release = '0.1.3'
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.2",
32+
version="0.1.3",
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.2"
41+
__version__ = "0.1.3"
4242

4343

4444
# Setup the logger.

0 commit comments

Comments
 (0)