Version bump, bugfix release v1.1.4

This commit is contained in:
Steffen Schuemann 2019-05-07 22:31:24 +02:00
parent 163d401f99
commit fe3d15f449
2 changed files with 11 additions and 1 deletions

View File

@ -440,6 +440,16 @@ to the expected behavior.
## Release Notes
###[v1.1.4](https://github.com/gulrak/filesystem/releases/tag/v1.1.4)
* Additional Bugfix for ([#12](https://github.com/gulrak/filesystem/issues/12)),
error in old unified `readdir/readdir_r` code of `fs::directory_iterator`;
as `readdir_r` is now depricated, I decided to drop it and the resulting
code is much easier, shorter and due to more refactoring faster
* Fix for crashing unit tests against MSVC C++17 std::filesystem
* Travis-CI now additionally test with Xcode 10.2 on macOS
* Some minor refactorings
### [v1.1.2](https://github.com/gulrak/filesystem/releases/tag/v1.1.2)
* Bugfix for ([#11](https://github.com/gulrak/filesystem/issues/11)),

View File

@ -160,7 +160,7 @@
//- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// ghc::filesystem version in decimal (major * 10000 + minor * 100 + patch)
#define GHC_FILESYSTEM_VERSION 10103L
#define GHC_FILESYSTEM_VERSION 10104L
namespace ghc {
namespace filesystem {