Skip to content

Commit

Permalink
Release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aehlig committed Jun 2, 2023
1 parent 07c5188 commit 4d10932
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
## Release `1.1.1` (UNRELEASED)
## Release `1.1.1` (2023-06-02)

Bug fixes on top of release `1.1.0`.

### Fixes

- Removed potential uses of `malloc` between `fork` and `exec`.
This removes the risk of deadlocks on certain combinations of
`C++` standard library and `libc`.
- The link flags for the final linking now can be set via the
configuration variable `FINAL_LDFLAGS`; in particular, the stack
size can easily be adapted. The default stack size is now set to
8M, removing an overflow on systems where the default stack size
was significantly lower.
- The man pages are now provided as markdown files, allowing to
potentially reduce the build dependencies to more standard ones.

## Release `1.1.0` (2023-05-19)

A feature release on top of `1.0.0`, backwards compatible.
Expand Down
2 changes: 1 addition & 1 deletion src/buildtool/main/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ auto version() -> std::string {
std::size_t major = 1;
std::size_t minor = 1;
std::size_t revision = 1;
std::string suffix = "~beta";
std::string suffix = std::string{};
#ifdef VERSION_EXTRA_SUFFIX
suffix += VERSION_EXTRA_SUFFIX;
#endif
Expand Down

0 comments on commit 4d10932

Please sign in to comment.