Skip to content

Commit 2fe4bb9

Browse files
authored
Merge pull request #91 from ryanvolz/release
Prepare for release 2.6.13
2 parents 64857b7 + 9900055 commit 2fe4bb9

13 files changed

Lines changed: 46 additions & 144 deletions

.authors.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
- ryan.volz@gmail.com
55
- rvolz@haystack.mit.edu
66
github: ryanvolz
7-
num_commits: 640
7+
num_commits: 663
88
first_commit: 2017-04-07 17:54:29
99
- name: Frank Lind
1010
email: flind@mit.edu
@@ -36,6 +36,10 @@
3636
first_commit: *id001
3737
- name: dependabot[bot]
3838
email: 49699333+dependabot[bot]@users.noreply.github.com
39-
num_commits: 5
39+
num_commits: 7
4040
first_commit: 2025-01-15 23:43:21
4141
is_org: true
42+
- name: Daniel Sheen
43+
email: dsheen@mit.edu
44+
num_commits: 8
45+
first_commit: 2025-07-14 15:01:42

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
Ryan Volz <rvolz@mit.edu> Ryan Volz <ryan.volz@gmail.com>
1313
Ryan Volz <rvolz@mit.edu> Ryan Volz <rvolz@haystack.mit.edu>
1414
John Swoboda <swoboj@mit.edu>
15+
Daniel Sheen <dsheen@mit.edu>
1516
Frank Lind <flind@mit.edu> flind <flind@haystack.mit.edu>
1617
Frank Lind <flind@mit.edu> flind <flind@orion.haystack.mit.edu>
1718
Juha Vierinen <jvi019@uit.no> Juha Vierinen <jvierine@gmail.com>

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ People
1313

1414
- Ryan Volz (rvolz@mit.edu)
1515
- John Swoboda (swoboj@mit.edu)
16+
- Daniel Sheen (dsheen@mit.edu)
1617
- Frank Lind (flind@mit.edu)
1718
- Juha Vierinen (jvi019@uit.no)
1819
- Bill Rideout (brideout@mit.edu)

CHANGELOG.rst

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,33 @@ digital_rf Change Log
44

55
.. current developments
66
7+
v2.6.13
8+
====================
9+
10+
**Added:**
11+
12+
* Added "-al" and "-ai" flags to drf_sti.py to auto estimate maximum length/integration for use when working with smaller files where it's practical to use all the data.
13+
* Added ``-exit`` argument to ``drf mirror`` to exit automatically when and end time has passed and no additional files have appeared. Also includes equivalent `exit_on_complete` argument to the `DigitalRFMirror` class.
14+
* Added ZeroMQ message passing to ``thor.py``, connected to the USRP source, to allow controlling and receiving messages from the radio externally while the script is running.
15+
* Added a "-P" flag to drf_sti.py to specify the number of processes to use for the calculation, allowing speedups over the default single process.
16+
17+
**Changed:**
18+
19+
* Use the HDF5 "core" file driver when writing Digital Metadata files, which keeps the file in memory until closed at which point it is flushed to disk. This results in a sample index group being written all at once instead of broken into multiple writes when the group and each dataset is created.
20+
* When checking for compatible versions, allow any version that is at most the current major version. Also, ignore version checks for development versions of the package (i.e. non-tagged git commits) so API bumps do not error in testing before the package version is bumped.
21+
22+
**Fixed:**
23+
24+
* Fixed a bug in drf_sti.py where multiple data frames weren't being segmented in time correctly.
25+
* Enable editable installs of the Python package (e.g. with ``pip install -e .`` from the top-level source directory).
26+
27+
**Authors:**
28+
29+
* Ryan Volz
30+
* Daniel Sheen
31+
32+
33+
734
v2.6.12
835
====================
936

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cmake_policy(SET CMP0094 NEW)
66
if(SKBUILD)
77
set(digital_rf_VERSION ${SKBUILD_PROJECT_VERSION})
88
else()
9-
set(digital_rf_VERSION 2.6.12)
9+
set(digital_rf_VERSION 2.6.13)
1010
endif(SKBUILD)
1111
project(digital_rf LANGUAGES C VERSION ${digital_rf_VERSION})
1212

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Citation
4141

4242
If you use Digital RF in a scientific publication, we would appreciate a citation such as the following (BibTeX_):
4343

44-
Volz, R., Rideout, W. C., Swoboda, J., Vierinen, J. P., & Lind, F. D. (2025). Digital RF (Version 2.6.12). MIT Haystack Observatory. Retrieved from https://github.com/MITHaystack/digital_rf
44+
Volz, R., Rideout, W. C., Swoboda, J., Vierinen, J. P., & Lind, F. D. (2025). Digital RF (Version 2.6.13). MIT Haystack Observatory. Retrieved from https://github.com/MITHaystack/digital_rf
4545

4646
.. _BibTeX: bibtex.bib
4747

bibtex.bib

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,18 @@ @comment{
102102
version = {2.6.11}
103103
}}
104104
105-
@software{Digital RF2.6.12,
105+
@comment{@software{Digital RF2.6.12,
106106
author = {Volz, Ryan and Rideout, William C. and Swoboda, John and Vierinen, Juha P. and Lind, Frank D.},
107107
date = {2025-05-21},
108108
title = {Digital RF},
109109
url = {https://github.com/MITHaystack/digital_rf},
110110
version = {2.6.12}
111+
}}
112+
113+
@software{Digital RF2.6.13,
114+
author = {Volz, Ryan and Rideout, William C. and Swoboda, John and Vierinen, Juha P. and Lind, Frank D.},
115+
date = {2025-08-11},
116+
title = {Digital RF},
117+
url = {https://github.com/MITHaystack/digital_rf},
118+
version = {2.6.13}
111119
}

news/auto_drf_sti.rst

Lines changed: 0 additions & 23 deletions
This file was deleted.

news/editable_installs.rst

Lines changed: 0 additions & 23 deletions
This file was deleted.

news/metadata_core_driver.rst

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)