From 7a1a9c5f116a7ca49d8d3806f314a405a1ebf191 Mon Sep 17 00:00:00 2001 From: Daniel Wolfensberger Date: Thu, 11 Jan 2024 15:36:16 +0100 Subject: [PATCH] update version nb and changelog --- doc/source/changelog.md | 22 ++++++++++++++++++++++ src/pyart | 2 +- src/pyrad_proc/setup.py | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/doc/source/changelog.md b/doc/source/changelog.md index c141e1040..527b31a0c 100644 --- a/doc/source/changelog.md +++ b/doc/source/changelog.md @@ -1,5 +1,27 @@ # Changelog +## v1.8.7 +**Bug fixes:** +- [bug correction in function to read MFCFRADIAL data](https://github.com/MeteoSwiss/pyrad/commit/dfacd71c301d3ee37e7c6c002b2b54bc347a2480) +- [fix bug due to missing fzl in some routines](https://github.com/MeteoSwiss/pyrad/commit/02aae44c72d5bb7c2e140a68504c8e00066309d0) +- [fix for missing box variable in process_roi2](https://github.com/MeteoSwiss/pyrad/commit/997db1f956aad6e348f1d92ae75882e7296fc22f) +- [Fix in process_grid_products.py for wrong warning message when bg DDA field is missing](https://github.com/MeteoSwiss/pyrad/commit/a8ee6c7d96da3932724f5e5775482ca5289f326d) +- [bug correction in read_knmi](https://github.com/MeteoSwiss/pyrad/commit/af5a2e2acfb7f6f4e0fd76f643860f04a55acb80) +- [bug correction in function process_turbulence in process_Doppler.py](https://github.com/MeteoSwiss/pyrad/commit/ed44ae9fa062df8a8c868c10abdf8081590c5d24) +- [fixed old pandas command in read_radiosounding](https://github.com/MeteoSwiss/pyrad/commit/a3ef19b556994bf1e2b792e360e1eb2dfdbd7908) + +**New additions** +- [modified function merge_scans_mfcfradial in read_data_radar.py to allow ingesting CFRadial files containing individual parameters and scans](https://github.com/MeteoSwiss/pyrad/commit/3050ffe8590206c4fb7776cfcd10fc497449bb3b) +- [ingestion of KNMI H5 radar data files and minor adaptations](https://github.com/MeteoSwiss/pyrad/commit/ad8bba2367479ed54d2b4f84aafda34dcf42e62a) +- [add possibility to use sounding data for fzl estimation](https://github.com/MeteoSwiss/pyrad/commit/59311182cabd0a79352964b7547a75ec8374d733) +- [added function to mask all data not belonging to a ROI. Added rectangular ROI.](https://github.com/MeteoSwiss/pyrad/commit/2555e68ac7c3e67ab468dff0a243fd9e11c89232) +- [modified function read_knmi of read_data_sensor.py](https://github.com/MeteoSwiss/pyrad/commit/4f43bf9051bdfd082d1b11299b8866cb5a2d98e3) +- [added IGRA sounding reader + support for IGRA sounding in DDA wrapper](https://github.com/MeteoSwiss/pyrad/commit/fe98f900d30b67c3e9d50fa277f34428079e46c5) +- [modified function read_knmi of read_data_sensor.py](https://github.com/MeteoSwiss/pyrad/commit/4f43bf9051bdfd082d1b11299b8866cb5a2d98e3) +- [new functions to read parsivel disdrometer data and compare to radar data](https://github.com/MeteoSwiss/pyrad/commit/28bb465287017ca28e9f146df4aa8c83cad5bb50) +- [ingestion of data from SkyEcho proprietary netcdf files](https://github.com/MeteoSwiss/pyrad/commit/45d3cb2873d72f2cb1fa6e25449dcf98176b7c30) +- [adaptation of turbulence retrieval to accept lidar data](https://github.com/MeteoSwiss/pyrad/commit/76673e0837f8c323c32e365361c064a666397d15) + ## v1.8.6 **Bug corrections** diff --git a/src/pyart b/src/pyart index c5ad726de..c22412a1d 160000 --- a/src/pyart +++ b/src/pyart @@ -1 +1 @@ -Subproject commit c5ad726de179432d50be1e150477ad179f08e118 +Subproject commit c22412a1d2b2bb2615b68bc2635966a35713d5ca diff --git a/src/pyrad_proc/setup.py b/src/pyrad_proc/setup.py index a3b3637bd..22009c52d 100644 --- a/src/pyrad_proc/setup.py +++ b/src/pyrad_proc/setup.py @@ -53,7 +53,7 @@ PLATFORMS = ["Linux"] MAJOR = 1 MINOR = 8 -MICRO = 6 +MICRO = 7 ISRELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) SCRIPTS = glob.glob('scripts/*')