From 320721102cb1851c44ab74aeea1585b72829eb22 Mon Sep 17 00:00:00 2001 From: Sanath Keshav Date: Mon, 26 Aug 2024 10:03:03 +0200 Subject: [PATCH 1/3] wrong git clone link in readme.md (#13) * Update README.md * Update README.md * Update README.md * Change TIK GitHub link in the packaging recipe --------- Co-authored-by: Ishaan Desai --- README.md | 2 +- cmake/packaging/CMakeLists.txt | 2 +- docker/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 59163c2..ecff43d 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ Spack is a package manager designed for high-performance computing environments. 1. Clone the repository: ```bash - git clone https://github.tik.uni-stuttgart.de/DAE/FANS.git + git clone https://github.com/DataAnalyticsEngineering/FANS.git cd FANS ``` diff --git a/cmake/packaging/CMakeLists.txt b/cmake/packaging/CMakeLists.txt index 7a62103..9bfee61 100644 --- a/cmake/packaging/CMakeLists.txt +++ b/cmake/packaging/CMakeLists.txt @@ -7,7 +7,7 @@ set(CPACK_OUTPUT_FILE_PREFIX "${CMAKE_BINARY_DIR}/packages") set(CPACK_PACKAGE_NAME "${PROJECT_NAME}") set(CPACK_PACKAGE_VENDOR "MIB DAE Stuttgart") set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "FANS - Fourier Accelerated Nodal Solver" CACHE STRING "Extended summary.") -set(CPACK_PACKAGE_HOMEPAGE_URL "https://github.tik.uni-stuttgart.de/DAE/FANS/") +set(CPACK_PACKAGE_HOMEPAGE_URL "https://github.com/DataAnalyticsEngineering/FANS") set(CPACK_DEBIAN_PACKAGE_MAINTAINER "MIB DAE Stuttgart") set(CPACK_PACKAGE_INSTALL_DIRECTORY ${CPACK_PACKAGE_NAME}) diff --git a/docker/README.md b/docker/README.md index 2d81b3e..abb252d 100644 --- a/docker/README.md +++ b/docker/README.md @@ -14,7 +14,7 @@ Set up a development container with your current working directory (in there, us First, clone FANS: ```bash -git clone https://github.tik.uni-stuttgart.de/DAE/FANS.git +git clone https://github.com/DataAnalyticsEngineering/FANS.git cd FANS ``` From accdd1c8b865b0f03a327666775aa6b359607c8a Mon Sep 17 00:00:00 2001 From: Ishaan Desai Date: Mon, 26 Aug 2024 10:29:02 +0200 Subject: [PATCH 2/3] Update CHANGELOG --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d021572..1ab66cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # FANS Changelog +## latest + +- Update TIK GitHub links in the documentation to public GitHub links https://github.com/DataAnalyticsEngineering/FANS/pull/13 + ## v0.1.1 - Disable sorting of includes in clang-format https://github.com/DataAnalyticsEngineering/FANS/pull/7 From e51c01f9ee2c7ec9f71014b7cf48c124ee127165 Mon Sep 17 00:00:00 2001 From: Ishaan Desai Date: Mon, 26 Aug 2024 10:30:51 +0200 Subject: [PATCH 3/3] Bump version --- CHANGELOG.md | 2 +- CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ab66cb..b5a99b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # FANS Changelog -## latest +## v0.1.2 - Update TIK GitHub links in the documentation to public GitHub links https://github.com/DataAnalyticsEngineering/FANS/pull/13 diff --git a/CMakeLists.txt b/CMakeLists.txt index a1aa09d..a3a2402 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.0...3.28) # ############################################################################## project(FANS - VERSION 0.1.1 + VERSION 0.1.2 LANGUAGES C CXX )