diff --git a/ChangeLog.rst b/ChangeLog.rst index 19288d9a..e037875f 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,3 +1,52 @@ +3.0.0 - TBD + +* The project has been renamed from C++ Format (cppformat) to fmt for + consistency with the used namespace and macro prefix + (`#307 `_). + Library headers are now located in the ``fmt`` directory: + + .. code:: c++ + + #include "fmt/format.h" + + Including the headers from the ``cppformat`` directory is deprecated + but works via a proxy header which will be removed in the next major version. + +* Fixed detection of user-defined literal support on Intel C++ compiler + (`#311 `_, + `#312 `_). + Thanks to `@dean0x7d (Dean Moldovan) `_ and + `@speth (Ray Speth) `_. + +* Compile test fixes (`#313 `_). + Thanks to `@dean0x7d (Dean Moldovan) `_. + +* Documentation fixes (`#309 `_). + Thanks to `@jwilk (Jakub Wilk) `_. + +* Fixed compiler warnings (`#259 `_, + `#277 `_, + `#286 `_). + Thanks to `@mwinterb `_, + `@pweiskircher (Patrik Weiskircher) `_, + `@Naios `_. + +* Improved compatibility with Windows Store apps + (`#280 `_, + `#285 `_) + Thanks to `@mwinterb `_. + +* Added tests of compatibility with older C++ standards + (`#273 `_). + Thanks to `@niosHD `_. + +* Fixed Android build (`#271 `_). + Thanks to `@newnon `_. + +* Changed ``ArgMap`` to be backed by a vector instead of a map. + (`#262 `_). + Thanks to `@mwinterb `_. + 2.1.1 - 2016-04-11 ------------------