Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release] Version bump (1.3.0) #1064

Merged
merged 4 commits into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading