Skip to content
Snippets Groups Projects
Commit 092026cc authored by Andre Offringa's avatar Andre Offringa
Browse files

Prepare changelog and version info for 6.1 release

parent 5c77b2bb
Branches
Tags
1 merge request!1272Prepare changelog and version info for 6.1 release
# DP3 Changelog
## Next release
### Improvements
- DP3 now requires EveryBeam v0.5.8
## [6.1] - 2024-06-18
- Support EveryBeam 0.6 (in addition to EveryBeam 0.5.8)
- Faster beam predict by using cached time directions
- Add support for dish telescopes like SKA-mid
- Add preliminary clipper task for VLBI processing
- Reduce memory in predict step
- Read sky model only once to speed up processing
- Various AARTFAAC processing improvements
- More use of XTensor
- Some use of AVX(2) instructions to speed up tasks
- Improve threading and use of threadpool
- Fix wrong h5 time axis when solint larger than number
- Fix prediction for source models with only negative polarized sources
- Fix compilation on platforms where size_t != 64 bit
- Fix multiple baseline selection (!1255)
- Fix ApplyCal with full-Jones correction
- Various small bugs and code improvements
## [6.0] - 2023-08-11
......
......@@ -12,7 +12,8 @@ if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.19")
endif()
# Set version number and project name.
set(DP3_VERSION 6.0.0)
# Please keep CPack/CMakeLists.txt and setup.py in sync with this.
set(DP3_VERSION 6.1.0)
if(DP3_VERSION MATCHES "^([0-9]+)\\.([0-9]+)\\.([0-9]+)")
set(DP3_VERSION_MAJOR "${CMAKE_MATCH_1}")
set(DP3_VERSION_MINOR "${CMAKE_MATCH_2}")
......
......@@ -45,7 +45,7 @@ set(CPACK_DEBIAN_FILE_NAME DEB-DEFAULT)
set(CPACK_DEBIAN_PACKAGE_ARCHITECTURE "amd64")
set(CPACK_DEBIAN_PACKAGE_DEPENDS
"aoflagger (>= 3.0.1),\
everybeam (>= 0.5.4), everybeam (<< 0.6.0),\
everybeam (>= 0.5.8), everybeam (<< 0.7.0),\
idg-api (>= 0.8)")
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "deb-packages@astron.nl")
set(CPACK_DEBIAN_PACKAGE_SECTION "science")
......
......@@ -111,7 +111,7 @@ class CMakeBuild(build_ext):
# logic and declaration, and simpler if you include description/version in a file.
setup(
name="DP3",
version="6.0.1",
version="6.1.0",
author="Astron",
author_email="dijkema@astron.nl",
description="DP3",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment