Version bump, release notes v1.04

This commit is contained in:
Steffen Schuemann 2018-11-10 19:21:45 +01:00
parent abb4ea8ab9
commit ad83c41d1b
2 changed files with 5 additions and 5 deletions

View File

@ -345,13 +345,13 @@ to the expected behavior.
## Release Notes ## Release Notes
### v1.0.3 (wip) ### [v1.0.4](https://github.com/gulrak/filesystem/releases/tag/v1.0.4)
* Bugfix for ([#3](https://github.com/gulrak/filesystem/issues/3)), fixed missing inlines * Bugfix for ([#3](https://github.com/gulrak/filesystem/issues/3)), fixed missing inlines
and added test to ensure including into multiple implementation files works as expected. and added test to ensure including into multiple implementation files works as expected.
* Building tests with `-Wall -Wextra -Werror` and fixed resulting issues. * Building tests with `-Wall -Wextra -Werror` and fixed resulting issues.
### [v1.0.2](https://github.com/gulrak/filesystem/tree/v1.0.2) ### [v1.0.2](https://github.com/gulrak/filesystem/releases/tag/v1.0.2)
* Updated catch2 to v2.4.0. * Updated catch2 to v2.4.0.
* Refactored `fs.op.permissions` test to work with all tested `std::filesystem` * Refactored `fs.op.permissions` test to work with all tested `std::filesystem`
@ -371,7 +371,7 @@ to the expected behavior.
* Fixed some integer type mismatches that could lead to warnings. * Fixed some integer type mismatches that could lead to warnings.
* Fixed `chrono` conversion issues in test and example on clang 7.0.0. * Fixed `chrono` conversion issues in test and example on clang 7.0.0.
### [v1.0.1](https://github.com/gulrak/filesystem/tree/v1.0.1) ### [v1.0.1](https://github.com/gulrak/filesystem/releases/tag/v1.0.1)
* Bugfix: `ghc::filesystem::canonical` now sees empty path as non-existant and reports * Bugfix: `ghc::filesystem::canonical` now sees empty path as non-existant and reports
an error. Due to this `ghc::filesystem::weakly_canonical` now returns relative an error. Due to this `ghc::filesystem::weakly_canonical` now returns relative
@ -384,7 +384,7 @@ to the expected behavior.
* `std_filesystem_test` is now also generated if LLVM/clang 7.0.0 is found. * `std_filesystem_test` is now also generated if LLVM/clang 7.0.0 is found.
### [v1.0.0](https://github.com/gulrak/filesystem/tree/v1.0.0) ### [v1.0.0](https://github.com/gulrak/filesystem/releases/tag/v1.0.0)
This was the first public release version. It implements the full range of This was the first public release version. It implements the full range of
C++17 std::filesystem, as far as possible without other C++17 dependencies. C++17 std::filesystem, as far as possible without other C++17 dependencies.

View File

@ -104,7 +104,7 @@
#define LWG_2937_BEHAVIOUR #define LWG_2937_BEHAVIOUR
// ghc::filesystem version in decimal (major * 10000 + minor * 100 + patch) // ghc::filesystem version in decimal (major * 10000 + minor * 100 + patch)
#define GHC_FILESYSTEM_VERSION 10003L #define GHC_FILESYSTEM_VERSION 10004L
namespace ghc { namespace ghc {
namespace filesystem { namespace filesystem {