Skip to content

Commit

Permalink
Merge branch 'release/2022.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
haruyama committed Jan 17, 2022
2 parents 8c295b3 + 8d79afa commit 0eec2f6
Show file tree
Hide file tree
Showing 12 changed files with 27 additions and 8 deletions.
13 changes: 13 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,19 @@

## develop

## 2022.1.0

- [UPDATE] 依存ライブラリの更新
- `boost``1.78.0`
- `CLI11``2.1.2`
- `fmt``8.0.1`
- `spdlog``1.9.2`
- `rapidcsv``8.53`
- @haruyama
- [FIX] 宇宙船演算子を利用している箇所に #include <compare> を追加
- @haruyama
- https://github.com/shiguredo/cpp-mp4/pull/12

## 2021.3

- [UPDATE] `boost``1.76.0`
Expand Down
10 changes: 5 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ set(CMAKE_CXX_COMPILER clang++)
include(cmake/env.cmake)
include(cmake/tools.cmake)

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 のバージョン")
set_cache_string_from_env(SPDLOG_VERSION 1.8.2 "spdlog のバージョン")
set_cache_string_from_env(BOOST_VERSION 1.78.0 "Boost のバージョン")
set_cache_string_from_env(CLI11_VERSION 2.1.2 "CLI11 のバージョン")
set_cache_string_from_env(FMT_VERSION 8.0.1 "fmt のバージョン")
set_cache_string_from_env(RAPIDCSV_VERSION 8.53 "rapidcsv のバージョン")
set_cache_string_from_env(SPDLOG_VERSION 1.9.2 "spdlog のバージョン")

add_compile_options(
-Wall
Expand Down
1 change: 1 addition & 0 deletions include/shiguredo/mp4/box.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include <array>
#include <compare> // NOLINT
#include <cstdint>
#include <istream>
#include <string>
Expand Down
1 change: 1 addition & 0 deletions include/shiguredo/mp4/box/co64.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once

#include <compare>
#include <cstdint>
#include <istream>
#include <string>
Expand Down
1 change: 1 addition & 0 deletions include/shiguredo/mp4/box/stco.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once

#include <compare>
#include <cstdint>
#include <istream>
#include <string>
Expand Down
1 change: 1 addition & 0 deletions include/shiguredo/mp4/box/stsc.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once

#include <compare>
#include <cstdint>
#include <istream>
#include <string>
Expand Down
1 change: 1 addition & 0 deletions include/shiguredo/mp4/box/stts.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once

#include <compare>
#include <cstdint>
#include <istream>
#include <string>
Expand Down
1 change: 1 addition & 0 deletions include/shiguredo/mp4/box_header.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once

#include <compare>
#include <cstdint>
#include <istream>
#include <string>
Expand Down
1 change: 1 addition & 0 deletions include/shiguredo/mp4/box_type.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include <array>
#include <compare> // NOLINT
#include <cstdint>
#include <string>

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.3";
return "2022.1.0";
}

} // namespace shiguredo::mp4
1 change: 0 additions & 1 deletion src/writer/faststart_writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,4 +204,3 @@ std::filesystem::path FaststartWriter::getIntermediateFilePath() {
}

} // namespace shiguredo::mp4::writer

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

BOOST_AUTO_TEST_SUITE_END()

0 comments on commit 0eec2f6

Please sign in to comment.