Skip to content
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,7 +1,7 @@
cmake_minimum_required(VERSION 3.12)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON )

project(sloth VERSION 2.0 LANGUAGES CXX)
project(sloth VERSION 2.1 LANGUAGES CXX)

list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake/modules)

Expand Down
2 changes: 1 addition & 1 deletion doc/Doxyfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ PROJECT_NAME= SLOTH
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
# could be handy for archiving the generated documentation or if some version
# control system is used.
PROJECT_NUMBER= "v2.0.0"
PROJECT_NUMBER= "v2.1.0"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
4 changes: 3 additions & 1 deletion spack_repo/packages/sloth/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ class Sloth(CMakePackage):
homepage = "https://github.com/Collab4Sloth/SLOTH"
url = "https://github.com/Collab4Sloth/SLOTH.git"

version("2.0.0", tag='v2.0.0', preferred=True)
version("2.1.0", tag='v2.1.0', preferred=True)
version("2.0.1", tag='v2.0.1', preferred=False)
version("2.0.0", tag='v2.0.0', preferred=False)
version("master", git='https://github.com/Collab4Sloth/SLOTH.git', branch='master')

variant('petsc' , default=False , description='Enable PETSc solvers, preconditioners, etc.')
Expand Down
Loading