Skip to content

Commit

Permalink
Prepare for v3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tammojan committed Apr 15, 2020
1 parent dfdfe22 commit 41122f7
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
25 changes: 25 additions & 0 deletions CHANGES.md
@@ -1,3 +1,28 @@
# 3.3.0

## General
- Replace implementation of complex trig functions by std:: (#1010)
- Fix bug SciMath / StatsFramework where parameters were passed incorrectly (#984)

## Tables
- Pass sorting algorithm optio nthrough to table iterator (#992)
- Support for ADIOS2 (#1006)
- Add .casarc option to disable table locking (#1002)

## Measurement Set / UVFits
- Fix antenna swapping in MSConcat (#977)
- Merge PROCESSOR table in MSConcat (#1004)
- Fix antenna positions in importing old VLA UVFITS (#1005)

## Images
- More efficient WCS batch coordinate lookups (#932)


# 3.2.1

- Increment the SO version, otherwise identical to 3.2 (#981)


# 3.2

## General
Expand Down
7 changes: 4 additions & 3 deletions CMakeLists.txt
Expand Up @@ -20,12 +20,13 @@ if (POLICY CMP0074)
endif()

set(PROJECT_VERSION_MAJOR 3)
set(PROJECT_VERSION_MINOR 2)
set(PROJECT_VERSION_PATCH 1)
set(PROJECT_VERSION_MINOR 3)
set(PROJECT_VERSION_PATCH 0)
set(PROJECT_VERSION
"${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")

SET(PROJECT_SOVERSION 4)
# Increment the PROJECT_SOVERSION every time you update VERSION_MINOR!
SET(PROJECT_SOVERSION 5)

SET(NO_SOVERSION FALSE CACHE BOOL "do not add version information to shared libraries")
set (CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
Expand Down

0 comments on commit 41122f7

Please sign in to comment.