diff --git a/ChangeLog.rst b/ChangeLog.rst index 73820526..3e9ff027 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,17 @@ 1.1.0 - TBD ----------- +* Added ``BasicArrayWriter``, a class template that provides operations for + formatting and writing data into a fixed-size array + (`#105 `_ and + `#122 `_): + + .. code:: c++ + + char buffer[100]; + fmt::ArrayWriter w(buffer); + w.write("The answer is {}", 42); + * Added `0 A.D. `_ and `PenUltima Online (POL) `_ to the list of notable projects using C++ Format. @@ -49,6 +60,9 @@ * Fixed ``BasicWriter::write`` without formatting arguments when C++11 support is disabled (`#109 `_). +* Fixed header-only build on OS X with GCC 4.9 + (`#124 `_). + * Fixed packaging issues (`#94 `_). * Fixed warnings in GCC, MSVC and Xcode/Clang @@ -56,6 +70,9 @@ `#96 `_ and `#114 `_). +* Added `changelog `_ + (`#103 `_). + 1.0.0 - 2015-02-05 ------------------