diff --git a/CHANGELOG.md b/CHANGELOG.md index b8ec964..8d7fa56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # 更新日志 +## 1.15.0 + +- 修复部分只有 `HLS` 流的直播不能自动录制 (issue #183) +- 没有 `flv` 流切换录制 `fmp4` 流 (issue #169) +- 修复 `RuntimeError: cannot join current thread`(issue #161) +- 修复 `Unclosed client session` (issue #176) +- 添加测试 `cookie` 的功能 (issue #181) + ## 1.14.1 修复 `ModuleNotFoundError: No module named 'blrec.web.middlewares'` diff --git a/src/blrec/__init__.py b/src/blrec/__init__.py index 8864625..16446f8 100644 --- a/src/blrec/__init__.py +++ b/src/blrec/__init__.py @@ -1,3 +1,3 @@ __prog__ = 'blrec' -__version__ = '1.14.1' +__version__ = '1.15.0' __github__ = 'https://github.com/acgnhiki/blrec'