Skip to content

Commit 1402fd0

Browse files
committed
changing version to 2.16.0
1 parent 522a76d commit 1402fd0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/markdown/Building.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ project("HelloWorld" CXX)
3232
3333
add_executable(${PROJECT_NAME} main.cpp)
3434
35-
find_package(NumCpp 2.15.1 REQUIRED)
35+
find_package(NumCpp 2.16.0 REQUIRED)
3636
target_link_libraries(${PROJECT_NAME}
3737
NumCpp::NumCpp
3838
)
@@ -50,7 +50,7 @@ add_executable(${PROJECT_NAME} main.cpp)
5050
include(FetchContent)
5151
FetchContent_Declare(NumCpp
5252
GIT_REPOSITORY https://github.com/dpilger26/NumCpp
53-
GIT_TAG Version_2.15.1)
53+
GIT_TAG Version_2.16.0)
5454
FetchContent_MakeAvailable(NumCpp)
5555
5656
target_link_libraries(${PROJECT_NAME}

docs/markdown/ReleaseNotes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release Notes
22

3-
## Version 2.15.1
3+
## Version 2.16.0
44

55
* fixed **Issue #144**, `outer` function now operates on arrays of different sizes
66
* fixed **Issue #215**, `pinv` function has been corrected

include/NumCpp/Core/Internal/Version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@
3030
namespace nc
3131
{
3232
// NOLINTNEXTLINE(cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays)
33-
constexpr char VERSION[] = "2.15.1"; ///< Current NumCpp version number
33+
constexpr char VERSION[] = "2.16.0"; ///< Current NumCpp version number
3434
} // namespace nc

0 commit comments

Comments
 (0)