Skip to content

Commit 804fce2

Browse files
okurzperlpunk
andcommitted
Prepare release of 1.0.0
Use semver.org compatible version format and jump to 1.0.0 to avoid any version computing ambiguities. As per semver/semver.org#1 and https://semver.org/#is-v123-a-semantic-version the version number itself does not include a "v"-prefix itself however the prefix can be included in denoting a version string. References: * https://semver.org/ * https://blogs.perl.org/users/grinnz/2018/04/a-guide-to-versions-in-perl.html * https://github.com/perlpunk/perl5-module-meta * semver/semver.org#1 Update Changes Co-authored-by: Tina Müller (tinita) <cpan2@tinita.de>
1 parent f596a13 commit 804fce2

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

Changes

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
Revision history for Perl extension Mojo-IOLoop-ReadWriteProcess
33

44
{{$NEXT}}
5+
1.0.0 2025-03-17 12:20:20Z
6+
- Various test fixes
7+
- Fix race condition in `is_running` when `kill_whole_group` is set
8+
- Fix handling process groups when initial process is not running anymore
9+
- Add Minilla to the ci target
10+
- Update minil.toml to have the harness arguments enabled
11+
- Mention syntactic sugar to help when debugging
12+
- Enable support for MacOSX (darwin)
513

614
0.34 2023-09-18T15:47:18Z
715
- Adapt to deprecation of spurt in upstream Mojolicious

META.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"web" : "https://github.com/openSUSE/Mojo-IOLoop-ReadWriteProcess"
7070
}
7171
},
72-
"version" : "0.34",
72+
"version" : "1.0.0",
7373
"x_contributors" : [
7474
"Adam Williamson <awilliam@redhat.com>",
7575
"Clemens Famulla-Conrad <cfamullaconrad@suse.de>",

lib/Mojo/IOLoop/ReadWriteProcess.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Mojo::IOLoop::ReadWriteProcess;
22

3-
our $VERSION = '0.34';
3+
our $VERSION = '1.0.0';
44

55
use Mojo::Base 'Mojo::EventEmitter';
66
use Mojo::File 'path';

0 commit comments

Comments
 (0)