Skip to content

Commit

Permalink
バージョンを上げる
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Sep 8, 2023
1 parent 3184a32 commit e62e3e8
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@

## develop

## 2023.2.1

- [FIX] docker image 生成を修正する
- @haruymaa

## 2023.2.0

- [UPDATE] 依存ライブラリの更新をする
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
HISUI_VERSION=2023.2.0
HISUI_VERSION=2023.2.1

BOOST_VERSION=1.83.0
CLI11_VERSION=2.3.2
Expand Down
4 changes: 2 additions & 2 deletions doc/USE.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Hisui は docker image を用意しています。これを使うことで気軽
- https://hub.docker.com/r/shiguredo/hisui

```
docker run -v /home/shiguredo/sora-2022.2.3/archive:/hisui -it shiguredo/hisui:2023.2.0-ubuntu-22.04 -f /hisui/CSX77QY9F57V5BT72S62C28VS4/report-CSX77QY9F57V5BT72S62C28VS4.json
docker run -v /home/shiguredo/sora-2022.2.3/archive:/hisui -it shiguredo/hisui:2023.2.1-ubuntu-22.04 -f /hisui/CSX77QY9F57V5BT72S62C28VS4/report-CSX77QY9F57V5BT72S62C28VS4.json
```

- -v で Sora の録画データがある archive フォルダを指定して下さい
Expand All @@ -23,7 +23,7 @@ docker run -v /home/shiguredo/sora-2022.2.3/archive:/hisui -it shiguredo/hisui:2
## docker 経由で help を見る

```
$ docker run -it shiguredo/hisui:2023.2.0-ubuntu-22.04 --help
$ docker run -it shiguredo/hisui:2023.2.1-ubuntu-22.04 --help
hisui
Usage: /usr/local/bin/hisui [OPTIONS]
Expand Down
2 changes: 1 addition & 1 deletion src/version/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ std::string get_fdkaac_aacenc_version() {
#endif

std::string get_hisui_version() {
return "2023.2.0";
return "2023.2.1";
}

std::string get_cppmp4_version() {
Expand Down
2 changes: 1 addition & 1 deletion test/version/version_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
BOOST_AUTO_TEST_SUITE(version)

BOOST_AUTO_TEST_CASE(get_hisui_version) {
BOOST_REQUIRE_EQUAL("2023.2.0", hisui::version::get_hisui_version());
BOOST_REQUIRE_EQUAL("2023.2.1", hisui::version::get_hisui_version());
}

BOOST_AUTO_TEST_SUITE_END()

0 comments on commit e62e3e8

Please sign in to comment.