Skip to content

Commit

Permalink
Merge pull request #1064 from julien-tierny/versionBump
Browse files Browse the repository at this point in the history
[release] Version bump (1.3.0)
  • Loading branch information
julien-tierny authored Sep 18, 2024
2 parents 6903659 + a490004 commit 12c6f7d
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.21) # since paraview 5.10
# The C is required to build with VTK when it has MPI
project(ttk VERSION 1.2 LANGUAGES CXX C)
project(ttk VERSION 1.3.0 LANGUAGES CXX C)

if("${PROJECT_SOURCE_DIR}" STREQUAL "${PROJECT_BINARY_DIR}")
message(FATAL_ERROR "Build in sources is not supported by TTK, please use a separate build folder")
Expand Down
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## TTK - ChangeLog
=
### dev

### 1.3.0
- Wasserstein Auto-Encoders of Merge Trees / Pers. Diagrams (IEEE TVCG 2024)
- Topological simplification optimization (IEEE VIS 2024)
- TopoMap dimensionality reduction (IEEE TVCG 2020)
Expand All @@ -10,7 +12,9 @@
- DMS performance improvements (allocation)
- Saddle connector reversal performance improvements
- Signed distance fields
- Array preconditioning improvements (fast MPI implementation)
- Migration to ParaView 5.12, 5.13
- CI extensions (sccache, ubuntu-24.04, macos-14)
- Switch to C++17
- Bug fixes

Expand Down
2 changes: 1 addition & 1 deletion core/base/common/Debug.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// \namespace ttk The Topology ToolKit

/// \mainpage TTK 1.2 Documentation
/// \mainpage TTK 1.3.0 Documentation
/// \image html "splash.png"
/// Useful links:
/// - TTK Home:
Expand Down
Binary file modified doc/img/splash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 12 additions & 7 deletions doc/img/splash.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions paraview/patch/paraview-5.10.1-CMakeLists.txt.patch
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ index f51fe395b..3044bfe08 100644

if (DEFINED PARAVIEW_VERSION_NICKNAME)
- set(paraview_version "${PARAVIEW_VERSION_NICKNAME}")
+ set(paraview_version "[TTK 1.2] ${PARAVIEW_VERSION_NICKNAME}")
+ set(paraview_version "[TTK 1.3.0] ${PARAVIEW_VERSION_NICKNAME}")
else ()
- set(paraview_version "${PARAVIEW_VERSION_FULL}")
+ set(paraview_version "[TTK 1.2] ${PARAVIEW_VERSION_FULL}")
+ set(paraview_version "[TTK 1.3.0] ${PARAVIEW_VERSION_FULL}")
endif ()
set(paraview_title "ParaView ${paraview_version}")
if (PARAVIEW_BRANCH)
Expand Down

0 comments on commit 12c6f7d

Please sign in to comment.