From 7667700df166e4c9aec4fac2088f2dd5ee199ca5 Mon Sep 17 00:00:00 2001 From: Cameron Van Eck Date: Fri, 6 Dec 2024 11:25:32 +1100 Subject: [PATCH] Increment version to release new updates. --- VERSION_HISTORY.txt | 12 ++++++++++++ setup.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/VERSION_HISTORY.txt b/VERSION_HISTORY.txt index af5d115..d219210 100644 --- a/VERSION_HISTORY.txt +++ b/VERSION_HISTORY.txt @@ -1,4 +1,16 @@ +1.4.8: +-Added m12 model (mixed slab with turbulent foreground). +-forced rmsynth1d outputs to the bit depth specified by the user (previously many outputs were 64bit regardless of user specification). +-Added combined Q/U sigma_add calculation and output. Now produces sigma_add for Q and U separately, and for both together. +-Fixed bug in rmclean3d where multiprocessing pool was not used properly. + +1.4.7: +-fixed crash when using Stokes I model cube in rmsynth3d. +-changed all references to speed of light to use astropy constant. +-fixed bug from strange interaction between Prefect, Docker, and multiprocessing. +-added basic tests for helper tools. + 1.4.6: -fixed bug in rmsynth3d when computing RMSF that is not spatially uniform. diff --git a/setup.py b/setup.py index fdb8bcd..faf7a3e 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ DESCRIPTION = "RM-synthesis, RM-clean and QU-fitting on polarised radio spectra" URL = "https://github.com/CIRADA-Tools/RM-Tools" REQUIRES_PYTHON = ">=3.7.0" -VERSION = "1.4.7" +VERSION = "1.4.8" DOWNLOAD_URL = ( "https://github.com/CIRADA-Tools/RM-Tools/archive/v" + VERSION + ".tar.gz" )