Skip to content

Commit

Permalink
Version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aperezdc committed Dec 10, 2024
1 parent 072f56e commit ab25e2b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.6.0] - 2024-12-10
### Added
- New `denv` utility, inspired by daemontools' `envdir`, which may be
used to manipulate the environment before executing a chained child
process.

### Fixed
- Retry system calls that may return with `errno` set to `EINTR` when
interrupted by signals to indicate they can be restarted from user space.
- Remove leftover, useless `$E` format specifier when reporting errors
during daemonization.

### Changed
- The project is now built in C23 mode by default. In practice `-std=c2x`
gets used to cover systems which may have slightly older compilers.

## [v0.5.1] - 2021-02-23
### Added
- The `dlog`, `dslog`, and `drlog` tools now log empty input lines. The
Expand Down Expand Up @@ -59,7 +75,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- `dlog` and `drlog` now handle the `INT`, `TERM`, and `HUP` signals gracefully.

[Unreleased]: https://github.com/aperezdc/dmon/compare/v0.5.1...HEAD
[Unreleased]: https://github.com/aperezdc/dmon/compare/v0.6.0...HEAD
[v0.6.0]: https://github.com/aperezdc/dmon/compare/v0.5.1...v0.6.0
[v0.5.1]: https://github.com/aperezdc/dmon/compare/v0.5.0...v0.5.1
[v0.5.0]: https://github.com/aperezdc/dmon/compare/v0.4.5...v0.5.0
[v0.4.5]: https://github.com/aperezdc/dmon/compare/v0.4.4...v0.4.5
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dmon",
"repo": "aperezdc/dmon",
"version": "0.5.1",
"version": "0.6.0",
"license": "MIT",
"description": "Small process daemonization and monitoring tool",
"keywords": ["monitor", "process", "daemonization", "logging"],
Expand All @@ -15,6 +15,7 @@
"src": [
"conf.c",
"conf.h",
"denv.c",
"dlog.c",
"dmon.c",
"drlog.c",
Expand Down

0 comments on commit ab25e2b

Please sign in to comment.