Skip to content
Snippets Groups Projects
Commit ed24ac52 authored by Wilson Snyder's avatar Wilson Snyder
Browse files

Version bump

parent 8f8e6201
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ The contributors that suggested a given feature are shown in []. [by ...]
indicates the contributor was also the author of the fix; Thanks!
* Verilog-Perl 3.479 devel
* Verilog-Perl 3.480 2022-09-01
**** Fix vrename ignoring % (#1674). [Wenjun]
......@@ -1478,7 +1478,7 @@ DESCRIPTION: Documentation on change history for this package
This uses outline mode in Emacs. See C-h m [M-x describe-mode].
Copyright 2001-2021 by Wilson Snyder. This program is free software;
Copyright 2001-2022 by Wilson Snyder. This program is free software;
you can redistribute it and/or modify it under the terms of either the GNU
Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
......
......@@ -13,7 +13,7 @@ use vars qw($VERSION $Debug);
######################################################################
#### Configuration Section
$VERSION = '3.479';
$VERSION = '3.480';
#######################################################################
# CONSTRUCTORS
......@@ -382,7 +382,7 @@ Verilog-Perl is part of the L<https://www.veripool.org/> free Verilog EDA
software tool suite. The latest version is available from CPAN and from
L<https://www.veripool.org/verilog-perl>.
Copyright 2006-2021 by Wilson Snyder. This package is free software; you
Copyright 2006-2022 by Wilson Snyder. This package is free software; you
can redistribute it and/or modify it under the terms of either the GNU
Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
......
......@@ -16,7 +16,7 @@ use Cwd;
######################################################################
#### Configuration Section
$VERSION = '3.479';
$VERSION = '3.480';
# Basenames we should ignore when recursing directories,
# Because they contain large files of no relevance
......@@ -814,7 +814,7 @@ Verilog-Perl is part of the L<https://www.veripool.org/> free Verilog EDA
software tool suite. The latest version is available from CPAN and from
L<https://www.veripool.org/verilog-perl>.
Copyright 2000-2021 by Wilson Snyder. This package is free software; you
Copyright 2000-2022 by Wilson Snyder. This package is free software; you
can redistribute it and/or modify it under the terms of either the GNU
Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
......
......@@ -119,7 +119,7 @@ Verilog-Perl is part of the L<https://www.veripool.org/> free Verilog EDA
software tool suite. The latest version is available from CPAN and from
L<https://www.veripool.org/verilog-perl>.
Copyright 2000-2021 by Wilson Snyder. This package is free software; you
Copyright 2000-2022 by Wilson Snyder. This package is free software; you
can redistribute it and/or modify it under the terms of either the GNU
Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
......@@ -151,7 +151,7 @@ use Carp;
######################################################################
#### Configuration Section
$VERSION = '3.479';
$VERSION = '3.480';
######################################################################
#### Internal Variables
......
--- #YAML:1.0
name: Verilog-Perl
version: 3.479
version: 3.480
version_from: Language.pm
abstract: Verilog language utilities and parsing
license: perl
......
# DESCRIPTION: Perl ExtUtils: Type 'perl Makefile.PL' to create a Makefile for this package
#
# Copyright 2000-2021 by Wilson Snyder. This program is free software;
# Copyright 2000-2022 by Wilson Snyder. This program is free software;
# you can redistribute it and/or modify it under the terms of either the GNU
# Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
......
......@@ -14,7 +14,7 @@ use base qw(Verilog::Netlist::Subclass);
use strict;
use vars qw($Debug $Verbose $VERSION);
$VERSION = '3.479';
$VERSION = '3.480';
######################################################################
#### Error Handling
......@@ -698,7 +698,7 @@ Verilog-Perl is part of the L<https://www.veripool.org/> free Verilog EDA
software tool suite. The latest version is available from CPAN and from
L<https://www.veripool.org/verilog-perl>.
Copyright 2000-2021 by Wilson Snyder. This package is free software; you
Copyright 2000-2022 by Wilson Snyder. This package is free software; you
can redistribute it and/or modify it under the terms of either the GNU
Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
......
......@@ -11,7 +11,7 @@ use strict;
@ISA = qw(Verilog::Netlist::Cell::Struct
Verilog::Netlist::Subclass);
$VERSION = '3.479';
$VERSION = '3.480';
structs('new',
'Verilog::Netlist::Cell::Struct'
......@@ -303,7 +303,7 @@ Verilog-Perl is part of the L<https://www.veripool.org/> free Verilog EDA
software tool suite. The latest version is available from CPAN and from
L<https://www.veripool.org/verilog-perl>.
Copyright 2000-2021 by Wilson Snyder. This package is free software; you
Copyright 2000-2022 by Wilson Snyder. This package is free software; you
can redistribute it and/or modify it under the terms of either the GNU
Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
......
......@@ -11,7 +11,7 @@ use strict;
@ISA = qw(Verilog::Netlist::ContAssign::Struct
Verilog::Netlist::Subclass);
$VERSION = '3.479';
$VERSION = '3.480';
structs('new',
'Verilog::Netlist::ContAssign::Struct'
......@@ -133,7 +133,7 @@ Verilog-Perl is part of the L<https://www.veripool.org/> free Verilog EDA
software tool suite. The latest version is available from CPAN and from
L<https://www.veripool.org/verilog-perl>.
Copyright 2000-2021 by Wilson Snyder. This package is free software; you
Copyright 2000-2022 by Wilson Snyder. This package is free software; you
can redistribute it and/or modify it under the terms of either the GNU
Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
......
......@@ -11,7 +11,7 @@ use strict;
@ISA = qw(Verilog::Netlist::Defparam::Struct
Verilog::Netlist::Subclass);
$VERSION = '3.479';
$VERSION = '3.480';
structs('new',
'Verilog::Netlist::Defparam::Struct'
......@@ -133,7 +133,7 @@ Verilog-Perl is part of the L<https://www.veripool.org/> free Verilog EDA
software tool suite. The latest version is available from CPAN and from
L<https://www.veripool.org/verilog-perl>.
Copyright 2000-2021 by Wilson Snyder. This package is free software; you
Copyright 2000-2022 by Wilson Snyder. This package is free software; you
can redistribute it and/or modify it under the terms of either the GNU
Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
......
......@@ -12,7 +12,7 @@ use strict;
@ISA = qw(Verilog::Netlist::File::Struct
Verilog::Netlist::Subclass);
$VERSION = '3.479';
$VERSION = '3.480';
structs('new',
'Verilog::Netlist::File::Struct'
......@@ -561,7 +561,7 @@ Verilog-Perl is part of the L<https://www.veripool.org/> free Verilog EDA
software tool suite. The latest version is available from CPAN and from
L<https://www.veripool.org/verilog-perl>.
Copyright 2000-2021 by Wilson Snyder. This package is free software; you
Copyright 2000-2022 by Wilson Snyder. This package is free software; you
can redistribute it and/or modify it under the terms of either the GNU
Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
......
......@@ -14,7 +14,7 @@ use strict;
@ISA = qw(Verilog::Netlist::Interface::Struct
Verilog::Netlist::Subclass);
$VERSION = '3.479';
$VERSION = '3.480';
structs('new',
'Verilog::Netlist::Interface::Struct'
......@@ -395,7 +395,7 @@ Verilog-Perl is part of the L<https://www.veripool.org/> free Verilog EDA
software tool suite. The latest version is available from CPAN and from
L<https://www.veripool.org/verilog-perl>.
Copyright 2000-2021 by Wilson Snyder. This package is free software; you
Copyright 2000-2022 by Wilson Snyder. This package is free software; you
can redistribute it and/or modify it under the terms of either the GNU
Lesser General Public License Version 3 or the Perl Artistic License
Version 2.0.
......
......@@ -7,7 +7,7 @@ require Exporter;
use vars qw($VERSION);
use strict;
$VERSION = '3.479';
$VERSION = '3.480';
# We don't use Verilog::Netlist::Subclass, as this is called from it!
......@@ -167,7 +167,7 @@ Verilog-Perl is part of the L<https://www.veripool.org/> free Verilog EDA
software tool suite. The latest version is available from CPAN and from
L<https://www.veripool.org/verilog-perl>.
Copyright 2000-2021 by Wilson Snyder. This package is free software; you
Copyright 2000-2022 by Wilson Snyder. This package is free software; you
can redistribute it and/or modify it under the terms of either the GNU
Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
......
......@@ -12,7 +12,7 @@ use strict;
@ISA = qw(Verilog::Netlist::ModPort::Struct
Verilog::Netlist::Subclass);
$VERSION = '3.479';
$VERSION = '3.480';
structs('new',
'Verilog::Netlist::ModPort::Struct'
......@@ -275,7 +275,7 @@ Verilog-Perl is part of the L<https://www.veripool.org/> free Verilog EDA
software tool suite. The latest version is available from CPAN and from
L<https://www.veripool.org/verilog-perl>.
Copyright 2000-2021 by Wilson Snyder. This package is free software; you
Copyright 2000-2022 by Wilson Snyder. This package is free software; you
can redistribute it and/or modify it under the terms of either the GNU
Lesser General Public License Version 3 or the Perl Artistic License
Version 2.0.
......
......@@ -17,7 +17,7 @@ use strict;
@ISA = qw(Verilog::Netlist::Module::Struct
Verilog::Netlist::Subclass);
$VERSION = '3.479';
$VERSION = '3.480';
structs('new',
'Verilog::Netlist::Module::Struct'
......@@ -533,7 +533,7 @@ Verilog-Perl is part of the L<https://www.veripool.org/> free Verilog EDA
software tool suite. The latest version is available from CPAN and from
L<https://www.veripool.org/verilog-perl>.
Copyright 2000-2021 by Wilson Snyder. This package is free software; you
Copyright 2000-2022 by Wilson Snyder. This package is free software; you
can redistribute it and/or modify it under the terms of either the GNU
Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
......
......@@ -11,7 +11,7 @@ use strict;
@ISA = qw(Verilog::Netlist::Net::Struct
Verilog::Netlist::Subclass);
$VERSION = '3.479';
$VERSION = '3.480';
my %_Type_Widths = (
'bit' => 1,
......@@ -408,7 +408,7 @@ Verilog-Perl is part of the L<https://www.veripool.org/> free Verilog EDA
software tool suite. The latest version is available from CPAN and from
L<https://www.veripool.org/verilog-perl>.
Copyright 2000-2021 by Wilson Snyder. This package is free software; you
Copyright 2000-2022 by Wilson Snyder. This package is free software; you
can redistribute it and/or modify it under the terms of either the GNU
Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
......
......@@ -17,7 +17,7 @@ use strict;
@ISA = qw(Verilog::Netlist::Pin::Struct
Verilog::Netlist::Subclass);
$VERSION = '3.479';
$VERSION = '3.480';
structs('_new_base',
'Verilog::Netlist::Pin::Struct'
......@@ -384,7 +384,7 @@ Verilog-Perl is part of the L<https://www.veripool.org/> free Verilog EDA
software tool suite. The latest version is available from CPAN and from
L<https://www.veripool.org/verilog-perl>.
Copyright 2000-2021 by Wilson Snyder. This package is free software; you
Copyright 2000-2022 by Wilson Snyder. This package is free software; you
can redistribute it and/or modify it under the terms of either the GNU
Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
......
......@@ -118,7 +118,7 @@ Verilog-Perl is part of the L<https://www.veripool.org/> free Verilog EDA
software tool suite. The latest version is available from CPAN and from
L<https://www.veripool.org/verilog-perl>.
Copyright 2000-2021 by Wilson Snyder. This package is free software; you
Copyright 2000-2022 by Wilson Snyder. This package is free software; you
can redistribute it and/or modify it under the terms of either the GNU
Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
......
......@@ -11,7 +11,7 @@ use strict;
@ISA = qw(Verilog::Netlist::Port::Struct
Verilog::Netlist::Subclass);
$VERSION = '3.479';
$VERSION = '3.480';
structs('_new_base',
'Verilog::Netlist::Port::Struct'
......@@ -197,7 +197,7 @@ Verilog-Perl is part of the L<https://www.veripool.org/> free Verilog EDA
software tool suite. The latest version is available from CPAN and from
L<https://www.veripool.org/verilog-perl>.
Copyright 2000-2021 by Wilson Snyder. This package is free software; you
Copyright 2000-2022 by Wilson Snyder. This package is free software; you
can redistribute it and/or modify it under the terms of either the GNU
Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
......
......@@ -12,7 +12,7 @@ use base qw(Exporter);
use vars qw($VERSION @EXPORT);
use strict;
$VERSION = '3.479';
$VERSION = '3.480';
@EXPORT = qw(structs);
# Maybe in the future. For now all users of this must do it themselves
......@@ -320,7 +320,7 @@ Verilog-Perl is part of the L<https://www.veripool.org/> free Verilog EDA
software tool suite. The latest version is available from CPAN and from
L<https://www.veripool.org/verilog-perl>.
Copyright 2000-2021 by Wilson Snyder. This package is free software; you
Copyright 2000-2022 by Wilson Snyder. This package is free software; you
can redistribute it and/or modify it under the terms of either the GNU
Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment