Release 1.6.0

This commit is contained in:
Frédéric Mangano 2021-01-01 11:41:03 +01:00
parent 3e0b3fa56e
commit 2d5db09bda
3 changed files with 10 additions and 2 deletions

View File

@ -1,6 +1,15 @@
opustags changelog
==================
1.6.0 - 2021-01-01
------------------
- UTF-8 conversion errors are now fatal.
- Introduce --raw for disabling encoding conversions.
- Improve platform compatibility.
This also happens to be opustagss 8-year anniversary!
1.5.1 - 2020-11-21
------------------

View File

@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.9)
project(
opustags
VERSION 1.5.1
VERSION 1.6.0
LANGUAGES CXX
)

View File

@ -185,7 +185,6 @@ ot::status ot::print_comments(const std::list<std::string>& comments, FILE* outp
{
static ot::encoding_converter from_utf8("UTF-8", "");
std::string local;
bool bad_comments = false;
bool has_newline = false;
bool has_control = false;
for (const std::string& utf8_comment : comments) {