Skip to content

Commit

Permalink
Merge pull request #25 from shiguredo/fix-version-string
Browse files Browse the repository at this point in the history
Version 上げ忘れを修正
  • Loading branch information
haruyama authored Mar 28, 2023
2 parents 792160a + c971ab9 commit bf276c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 "2022.1.0";
return "2023.1.1";
}

} // 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("2022.1.0", shiguredo::mp4::get_version_string());
BOOST_REQUIRE_EQUAL("2023.1.1", shiguredo::mp4::get_version_string());
}

BOOST_AUTO_TEST_SUITE_END()

0 comments on commit bf276c6

Please sign in to comment.