refs #88, updated readme and bumped to wip version

This commit is contained in:
Steffen Schuemann 2021-01-21 09:14:40 +01:00
parent 0dde29d260
commit de57485877
2 changed files with 8 additions and 1 deletions

View File

@ -552,6 +552,13 @@ to the expected behavior.
## Release Notes
### v1.4.2 (WIP)
* Refactoring for [#88](https://github.com/gulrak/filesystem/issues/88), `fs::path::parent_path()`
had a performance issue, as it was still using a loop based approach to recreate
the parent from elements. This created lots of temporaries and was too slow
especially on long paths.
### [v1.4.0](https://github.com/gulrak/filesystem/releases/tag/v1.4.0)
* Enhancements for [#71](https://github.com/gulrak/filesystem/issues/71), when compiled with C++20:

View File

@ -236,7 +236,7 @@
//- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// ghc::filesystem version in decimal (major * 10000 + minor * 100 + patch)
#define GHC_FILESYSTEM_VERSION 10400L
#define GHC_FILESYSTEM_VERSION 10401L
#if !defined(GHC_WITH_EXCEPTIONS) && (defined(__EXCEPTIONS) || defined(__cpp_exceptions) || defined(_CPPUNWIND))
#define GHC_WITH_EXCEPTIONS