Skip to content

Commit

Permalink
Bump version to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zhi-wang committed Oct 23, 2022
1 parent 9b00ec0 commit 45a1c33
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 80 deletions.
39 changes: 0 additions & 39 deletions .travis.yml

This file was deleted.

36 changes: 0 additions & 36 deletions cmake/check-pgi

This file was deleted.

4 changes: 2 additions & 2 deletions code-format.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
DETECTED=$(clang-format --version) # Ubuntu clang-format version 10.0.1-++20200708123514+ef32c611aa2-1~exp1~20200707224111.189
DETECTED="${DETECTED##*clang-format version}" # 10.0.1-++20200708123514+ef32c611aa2-1~exp1~20200707224111.189
DETECTED="${DETECTED%%.*}" # 10
if [ $DETECTED -lt 10 ]; then
echo Must use clang-format version 10.0.0+
if [ $DETECTED -lt 14 ]; then
echo Must use clang-format version 14.0.0+
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion ext/ext/catch2v3
Submodule catch2v3 updated 66 files
+7 −1 .bazelrc
+43 −0 .github/workflows/linux-meson-builds.yml
+12 −4 .github/workflows/linux-simple-builds.yml
+6 −2 .github/workflows/mac-builds.yml
+1 −0 .gitignore
+6 −7 BUILD.bazel
+1 −0 CMake/CatchConfigOptions.cmake
+6 −6 CMake/CatchMiscFunctions.cmake
+2 −8 CMakeLists.txt
+0 −14 WORKSPACE
+15 −0 WORKSPACE.bazel
+10 −9 docs/Readme.md
+45 −64 docs/assertions.md
+4 −33 docs/ci-and-misc.md
+1 −1 docs/cmake-integration.md
+7 −6 docs/command-line.md
+2 −2 docs/commercial-users.md
+192 −0 docs/comparing-floating-point-numbers.md
+2 −2 docs/configuration.md
+2 −2 docs/contributing.md
+1 −1 docs/event-listeners.md
+13 −1 docs/faq.md
+2 −2 docs/limitations.md
+7 −48 docs/matchers.md
+21 −8 docs/migrate-v2-to-v3.md
+1 −1 docs/opensource-users.md
+34 −0 docs/release-notes.md
+1 −1 docs/reporter-events.md
+4 −4 docs/test-fixtures.md
+6 −5 docs/tutorial.md
+6 −1 docs/usage-tips.md
+1 −1 docs/why-catch.md
+1 −1 examples/CMakeLists.txt
+2 −0 extras/CatchAddTests.cmake
+44 −9 extras/catch_amalgamated.cpp
+78 −51 extras/catch_amalgamated.hpp
+17 −0 meson.build
+17 −2 src/CMakeLists.txt
+9 −5 src/catch2/benchmark/catch_constructor.hpp
+1 −1 src/catch2/catch_all.hpp
+7 −2 src/catch2/catch_config.cpp
+18 −0 src/catch2/catch_get_random_seed.cpp
+18 −0 src/catch2/catch_get_random_seed.hpp
+0 −2 src/catch2/catch_session.cpp
+12 −10 src/catch2/catch_tostring.hpp
+2 −0 src/catch2/catch_user_config.hpp.in
+1 −1 src/catch2/catch_version.cpp
+1 −1 src/catch2/catch_version_macros.hpp
+17 −1 src/catch2/internal/catch_compiler_capabilities.hpp
+3 −1 src/catch2/internal/catch_context.hpp
+1 −0 src/catch2/internal/catch_istream.cpp
+2 −2 src/catch2/internal/catch_meta.hpp
+4 −0 src/catch2/internal/catch_platform.hpp
+1 −0 src/catch2/internal/catch_sharding.hpp
+3 −3 src/catch2/internal/catch_template_test_registry.hpp
+12 −0 src/catch2/internal/catch_test_macro_impl.hpp
+0 −4 src/catch2/internal/catch_windows_h_proxy.hpp
+357 −0 src/catch2/meson.build
+2 −1 src/catch2/reporters/catch_reporter_compact.cpp
+2 −1 src/catch2/reporters/catch_reporter_console.cpp
+6 −0 tests/CMakeLists.txt
+1 −1 tests/ExtraTests/CMakeLists.txt
+71 −0 tests/meson.build
+2 −1 tools/scripts/checkConvenienceHeaders.py
+1 −0 tools/scripts/generateAmalgamatedFiles.py
+12 −0 tools/scripts/releaseCommon.py
4 changes: 2 additions & 2 deletions include/tinker9.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/// \addtogroup general
/// \{
#define TINKER9_VERSION_MAJOR 1
#define TINKER9_VERSION_MINOR 2
#define TINKER9_VERSION_MINOR 3
#define TINKER9_VERSION_PATCH 0
/// \}

Expand All @@ -28,7 +28,7 @@
" ### ### ""\n" \
" ### Tinker9 -- Software Tools for Molecular Design ###""\n" \
" ## ##""\n" \
" ## Version 1.2.0 september 2022 ##""\n" \
" ## Version 1.3.0 October 2022 ##""\n" \
" ## ##""\n" \
" ## Copyright (c) Zhi Wang & the Ponder Lab ##""\n" \
" ### All Rights Reserved ###""\n" \
Expand Down

0 comments on commit 45a1c33

Please sign in to comment.