Version 1.0 + remove "experimental" notices
This commit is contained in:
parent
383ed8409c
commit
32c8fc1b89
13 changed files with 35 additions and 53 deletions
|
|
@ -30,7 +30,7 @@ The following module versions were used:
|
|||
|
||||
=item L<DBD::Pg> 3.18.0
|
||||
|
||||
=item L<FU> 0.5
|
||||
=item L<FU> 1.0
|
||||
|
||||
=item L<HTML::Tiny> 1.08
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# Internal module used by FU.pm
|
||||
package FU::DebugImpl 0.5;
|
||||
package FU::DebugImpl 1.0;
|
||||
use v5.36;
|
||||
use utf8;
|
||||
use experimental 'for_list';
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
package FU::Log 0.5;
|
||||
package FU::Log 1.0;
|
||||
use v5.36;
|
||||
use Exporter 'import';
|
||||
use POSIX 'strftime';
|
||||
|
|
@ -65,11 +65,6 @@ __END__
|
|||
|
||||
FU::Log - Extremely Basic Process-Wide Logging Infrastructure
|
||||
|
||||
=head1 EXPERIMENTAL
|
||||
|
||||
This module is still in development and there will likely be a few breaking API
|
||||
changes, see the main L<FU> module for details.
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
use FU::Log 'log_write';
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
package FU::MultipartFormData 0.5;
|
||||
package FU::MultipartFormData 1.0;
|
||||
use v5.36;
|
||||
use Carp 'confess';
|
||||
use FU::Util 'utf8_decode';
|
||||
|
|
|
|||
7
FU/Pg.pm
7
FU/Pg.pm
|
|
@ -1,4 +1,4 @@
|
|||
package FU::Pg 0.5;
|
||||
package FU::Pg 1.0;
|
||||
use v5.36;
|
||||
use FU::XS;
|
||||
|
||||
|
|
@ -35,11 +35,6 @@ __END__
|
|||
|
||||
FU::Pg - The Ultimate (synchronous) Interface to PostgreSQL
|
||||
|
||||
=head1 EXPERIMENTAL
|
||||
|
||||
This module is still in development and there will likely be a few breaking API
|
||||
changes, see the main L<FU> module for details.
|
||||
|
||||
=head1 SYNOPSYS
|
||||
|
||||
use FU::Pg;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
package FU::SQL 0.5;
|
||||
package FU::SQL 1.0;
|
||||
use v5.36;
|
||||
use Exporter 'import';
|
||||
use Carp 'confess';
|
||||
|
|
@ -103,11 +103,6 @@ __END__
|
|||
|
||||
FU::SQL - Small and Safe SQL Query Builder
|
||||
|
||||
=head1 EXPERIMENTAL
|
||||
|
||||
This module is still in development and there will likely be a few breaking API
|
||||
changes, see the main L<FU> module for details.
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
use FU::SQL;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
package FU::Util 0.5;
|
||||
package FU::Util 1.0;
|
||||
|
||||
use v5.36;
|
||||
use FU::XS;
|
||||
|
|
@ -98,11 +98,6 @@ __END__
|
|||
|
||||
FU::Util - Miscellaneous Utility Functions
|
||||
|
||||
=head1 EXPERIMENTAL
|
||||
|
||||
This module is still in development and there will likely be a few breaking API
|
||||
changes, see the main L<FU> module for details.
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
use FU::Util qw/json_format/;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
package FU::Validate 0.5;
|
||||
package FU::Validate 1.0;
|
||||
|
||||
use v5.36;
|
||||
use experimental 'builtin', 'for_list';
|
||||
|
|
@ -447,11 +447,6 @@ __END__
|
|||
|
||||
FU::Validate - Data and form validation and normalization
|
||||
|
||||
=head1 EXPERIMENTAL
|
||||
|
||||
This module is still in development and there will likely be a few breaking API
|
||||
changes, see the main L<FU> module for details.
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
This module provides an easy and simple interface for data validation. It can
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
package FU::XMLWriter 0.5;
|
||||
package FU::XMLWriter 1.0;
|
||||
use v5.36;
|
||||
use Carp 'confess';
|
||||
use Exporter 'import';
|
||||
|
|
@ -83,11 +83,6 @@ __END__
|
|||
|
||||
FU::XMLWriter - Convenient and efficient XML and HTML generator.
|
||||
|
||||
=head1 EXPERIMENTAL
|
||||
|
||||
This module is still in development and there will likely be a few breaking API
|
||||
changes, see the main L<FU> module for details.
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
use FU::XMLWriter ':html5_';
|
||||
|
|
|
|||
2
FU/XS.pm
2
FU/XS.pm
|
|
@ -1,5 +1,5 @@
|
|||
# This module is for internal use by other FU modules.
|
||||
package FU::XS 0.5;
|
||||
package FU::XS 1.0;
|
||||
use Carp; # may be called by XS.
|
||||
use XSLoader;
|
||||
XSLoader::load('FU');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue