Skip to content

Commit fdcea81

Browse files
committed
prerelease: version bump, update docs, readme
1 parent eb98565 commit fdcea81

File tree

7 files changed

+20
-4
lines changed

7 files changed

+20
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to BEAT will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77

8+
## [1.2.3] 20 November 2022
9+
Contributors: Hannes Vasyura-Bathke @hvasbath
10+
11+
### Fixed
12+
- FFI: do not init wavemaps during *SeismicComposite* init
13+
- heart: flexible versioning for geodetic GF backend
14+
- docs: correctly state python3.8 in installation instructions
15+
16+
817
## [1.2.2] 28 October 2022
918
Contributors: Hannes Vasyura-Bathke @hvasbath
1019

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ If you came looking for the beat package calculating internet time you can find
77

88
Based on pyrocko, theano and pymc3
99

10+
20 November 2022
11+
Version 1.2.3 is released. Bugfix-release.
12+
1013
28 October 2022
1114
Version 1.2.2 is released. Details in the [changelog](https://github.com/hvasbath/beat/blob/master/CHANGELOG.md).
1215

beat/heart.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3832,6 +3832,7 @@ def seis_derivative(
38323832
):
38333833
"""
38343834
Calculate numerical derivative with respect to source or spatial parameter
3835+
38353836
Parameters
38363837
----------
38373838
engine : :class:`pyrocko.gf.seismosizer.LocalEngine`
@@ -3854,6 +3855,7 @@ def seis_derivative(
38543855
is being calculated e.g. 'strike', 'dip', 'depth'
38553856
stencil_order : int
38563857
order N of numerical stencil differentiation, available; 3 or 5
3858+
38573859
Returns
38583860
-------
38593861
:class:`num.array` ntargets x nsamples with the first derivative

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565

6666
# General information about the project.
6767
project = "beat"
68-
copyright = "2021, Hannes Vasyura-Bathke"
68+
copyright = "2022, Hannes Vasyura-Bathke"
6969
author = "Hannes Vasyura-Bathke"
7070

7171
# The version info for the project you're documenting, acts as replacement for
@@ -82,7 +82,7 @@
8282
#
8383
# This is also used if you do content translation via gettext catalogs.
8484
# Usually you set "language" from the command line for these cases.
85-
language = None
85+
language = "en"
8686

8787
# There are two options for replacing |today|: either, you set today to some
8888
# non-false value, then it is used:

docs/index.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ Citing BEAT
1616
The development of BEAT lead to several publications that describe theory and methods in detail.
1717
If your work results in an publication where you used BEAT we kindly ask you to consider citing the BEAT software package and the related article(s). Doing so is essential for maintaining and further developing the software.
1818

19+
.. [VasyuraBathke2021] Vasyura-Bathke, Hannes; Dettmer, Jan; Dutta, Rishabh, Mai, Paul Martin; Jónsson, Sigurjón (2021): **Accounting for theory errors with empirical Bayesian noise models in nonlinear centroid moment tensor estimation**. Geophysical Journal International. https://doi.org/10.1093/gji/ggab034
20+
1921
.. [VasyuraBathke2020] Vasyura-Bathke, Hannes; Dettmer, Jan; Steinberg, Andreas; Heimann, Sebastian; Isken, Marius; Zielke, Olaf; Mai, Paul Martin; Sudhaus, Henriette; Jónsson, Sigurjón (2020): **The Bayesian Earthquake Analysis Tool**. Seismological Research Letters. https://doi.org/10.1785/0220190075
2022
2123
.. [VasyuraBathke2019] Vasyura-Bathke, Hannes; Dettmer, Jan; Steinberg, Andreas; Heimann, Sebastian; Isken, Marius; Zielke, Olaf; Mai, Paul Martin; Sudhaus, Henriette; Jónsson, Sigurjón (2019): **BEAT - Bayesian Earthquake Analysis Tool**. V. 1.0. GFZ Data Services. http://doi.org/10.5880/fidgeo.2019.024

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "beat"
7-
version = "1.2.2"
7+
version = "1.2.3"
88
requires-python = ">=3.8"
99
license = {text = "GPLv3"}
1010
description = "'Bayesian Earthquake Analysis Tool'"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
op = os.path
1212

1313
packname = "beat"
14-
version = "1.2.2"
14+
version = "1.2.3"
1515

1616

1717
try:

0 commit comments

Comments
 (0)