File: VERSION.pm

package info (click to toggle)
libtrue-perl 1.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 776 kB
  • sloc: perl: 420; makefile: 3
file content (26 lines) | stat: -rw-r--r-- 614 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package true::VERSION;

use strict;
use warnings;

require true;

# XXX this declaration must be on a single line
# https://metacpan.org/pod/version#How-to-declare()-a-dotted-decimal-version
use version 0.77; our $VERSION = version->declare('v1.0.2');

=head1 NAME

true::VERSION - shim to allow modules to depend on true.pm

=head1 DESCRIPTION

This module exists to work around bugs in the dependency system which
prevent modules from depending on L<true>.

Instead of depending on L<true>, depend on L<true::VERSION> with the
same version number.

This module was introduced with version 0.16 of L<true>.

=cut