From c756730c4ac4fc29711964b4cc53dae2fac1c257 Mon Sep 17 00:00:00 2001 From: Shane da Silva Date: Mon, 5 Aug 2024 23:30:25 -0700 Subject: [PATCH] Cut version 5.1.0 --- CHANGELOG.md | 5 +++++ lib/childprocess/version.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76e4aa6..a32a0cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +### Version 5.1.0 / 2024-01-06 + +* [#196](https://github.com/enkessler/childprocess/pull/196): Remove `ostruct` dependency to fix deprecation warning on Ruby 3.4 +* [#199](https://github.com/enkessler/childprocess/pull/199): Add `logger` dependency to fix deprecation warning on Ruby 3.4 + ### Version 5.0.0 / 2024-01-06 * [#175](https://github.com/enkessler/childprocess/pull/175): Replace all backends by `Process.spawn` for portability, reliability and simplicity. diff --git a/lib/childprocess/version.rb b/lib/childprocess/version.rb index cc53f08..bb652a5 100644 --- a/lib/childprocess/version.rb +++ b/lib/childprocess/version.rb @@ -1,3 +1,3 @@ module ChildProcess - VERSION = '5.0.0' + VERSION = '5.1.0' end