Skip to content

Commit e86e733

Browse files
committed
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
1 parent d6396b4 commit e86e733

3 files changed

Lines changed: 18 additions & 3 deletions

File tree

Changes

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,22 @@
22
Revision history for Perl extension Mojo-IOLoop-ReadWriteProcess
33

44
{{$NEXT}}
5-
0.35 2025-03-17 12:20:20Z
5+
1.0.0 2025-03-17 12:20:20Z
6+
- CI: Bump to codecov-action@v5
7+
- CI: Use codecov token to prevent rate limit
8+
- CI: Bump to codecov-action@v4
9+
- CI: Fix indendation in version matrix
10+
- CI: Simply use version 'latest' for codecov upload
11+
- CI: Remove trailing space in title
12+
- CI: Simplify 'on' definition
13+
- CI: Add recent and current Perl versions
14+
- CI: Use current version of checkout@v4
15+
- Remove .proverc
16+
- t: Use $^X for executing perl
17+
- Update condition for process list definitions in 12_mocked_container
18+
- Use consistent interval in `t/01_run.t`
19+
- Fix more instances where `t/01_run.t` might fail
20+
- Give process group a few seconds to terminate in `t/01_run.t`
621
- Fix sporadic failures in `t/01_run.t`
722
- Debug test for stopping whole process group
823
- Fix race condition in `is_running` when `kill_whole_group` is set

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.35",
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.35';
3+
our $VERSION = '1.0.0';
44

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

0 commit comments

Comments
 (0)