Skip to content

Commit

Permalink
Merge branch 'release/2021.3' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Apr 20, 2021
2 parents fb3d64f + 8517c04 commit 8c295b3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@

## develop

## 2021.3

- [UPDATE] `boost``1.76.0`
- @haruyama
- https://github.com/shiguredo/cpp-mp4/pull/8

## 2021.2

- [ADD] av01, av1C box のサポート
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set(CMAKE_CXX_COMPILER clang++)
include(cmake/env.cmake)
include(cmake/tools.cmake)

set_cache_string_from_env(BOOST_VERSION 1.75.0 "Boost のバージョン")
set_cache_string_from_env(BOOST_VERSION 1.76.0 "Boost のバージョン")
set_cache_string_from_env(CLI11_VERSION 1.9.1 "CLI11 のバージョン")
set_cache_string_from_env(FMT_VERSION 7.1.3 "fmt のバージョン")
set_cache_string_from_env(RAPIDCSV_VERSION 8.48 "rapidcsv のバージョン")
Expand Down
2 changes: 1 addition & 1 deletion src/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
namespace shiguredo::mp4 {

std::string get_version_string() {
return "2021.2";
return "2021.3";
}

} // namespace shiguredo::mp4
2 changes: 1 addition & 1 deletion test/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
BOOST_AUTO_TEST_SUITE(version)

BOOST_AUTO_TEST_CASE(version_string) {
BOOST_REQUIRE_EQUAL("2021.2", shiguredo::mp4::get_version_string());
BOOST_REQUIRE_EQUAL("2021.3", shiguredo::mp4::get_version_string());
}

BOOST_AUTO_TEST_SUITE_END()

0 comments on commit 8c295b3

Please sign in to comment.