This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a change to branch master
in repository libspecio-perl.

      from  7134946   Releasing package libspecio-perl version 0.33-1
      adds  f511ffd   New upstream version 0.40
       new  c00ba1e   Updated version 0.40 from 'upstream/0.40'
       new  cc1e0e0   Declare compliance with Debian Policy 4.0.1 (no changes)
       new  b05ab6c   Bump debhelper compatibility level to 10
       new  662ef57   Update (build-)dependencies
       new  8dda332   Releasing package libspecio-perl version 0.40-1

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CONTRIBUTING.md                          |    4 +-
 Changes                                  |   76 ++
 MANIFEST                                 |   23 +-
 META.json                                |  325 +++++----
 META.yml                                 |  307 ++++----
 Makefile.PL                              |   10 +-
 README.md                                |   14 +-
 appveyor.yml                             |   17 +
 cpanfile                                 |    9 +
 debian/changelog                         |    9 +
 debian/compat                            |    2 +-
 debian/control                           |   10 +-
 dist.ini                                 |    7 +
 lib/Specio.pm                            |   25 +-
 lib/Specio/Coercion.pm                   |    4 +-
 lib/Specio/Constraint/AnyCan.pm          |   28 +-
 lib/Specio/Constraint/AnyDoes.pm         |   33 +-
 lib/Specio/Constraint/AnyIsa.pm          |   37 +-
 lib/Specio/Constraint/Enum.pm            |    8 +-
 lib/Specio/Constraint/Intersection.pm    |    4 +-
 lib/Specio/Constraint/ObjectCan.pm       |    8 +-
 lib/Specio/Constraint/ObjectDoes.pm      |   16 +-
 lib/Specio/Constraint/ObjectIsa.pm       |    8 +-
 lib/Specio/Constraint/Parameterizable.pm |   16 +-
 lib/Specio/Constraint/Parameterized.pm   |    4 +-
 lib/Specio/Constraint/Role/CanType.pm    |   68 +-
 lib/Specio/Constraint/Role/DoesType.pm   |   61 +-
 lib/Specio/Constraint/Role/Interface.pm  |  119 ++--
 lib/Specio/Constraint/Role/IsaType.pm    |   61 +-
 lib/Specio/Constraint/Simple.pm          |   20 +-
 lib/Specio/Constraint/Structurable.pm    |  267 +++++++
 lib/Specio/Constraint/Structured.pm      |  134 ++++
 lib/Specio/Constraint/Union.pm           |    4 +-
 lib/Specio/Declare.pm                    |   72 +-
 lib/Specio/DeclaredAt.pm                 |    4 +-
 lib/Specio/Exception.pm                  |   18 +-
 lib/Specio/Exporter.pm                   |   46 +-
 lib/Specio/Helpers.pm                    |    4 +-
 lib/Specio/Library/Builtins.pm           |  193 +++--
 lib/Specio/Library/Numeric.pm            |    4 +-
 lib/Specio/Library/Perl.pm               |    6 +-
 lib/Specio/Library/String.pm             |    4 +-
 lib/Specio/Library/Structured.pm         |  251 +++++++
 lib/Specio/Library/Structured/Dict.pm    |  167 +++++
 lib/Specio/Library/Structured/Map.pm     |  124 ++++
 lib/Specio/Library/Structured/Tuple.pm   |  218 ++++++
 lib/Specio/OO.pm                         |   32 +-
 lib/Specio/PartialDump.pm                |    4 +-
 lib/Specio/Registry.pm                   |    4 +-
 lib/Specio/Role/Inlinable.pm             |    4 +-
 lib/Specio/Subs.pm                       |  282 ++++++++
 lib/Specio/TypeChecks.pm                 |    4 +-
 lib/Test/Specio.pm                       | 1120 ++++++++++++++++++++++++++++--
 t/00-report-prereqs.dd                   |   11 +
 t/00-report-prereqs.t                    |   18 +-
 t/additional-exports.t                   |   51 ++
 t/any-does-isa.t                         |  229 ++++++
 t/builtins-sanity.t                      |  941 +------------------------
 t/coercion.t                             |  152 +++-
 t/declare-helpers.t                      |  981 +++++++++++++++++++++-----
 t/dict.t                                 |  349 ++++++++++
 t/does-type.t                            |    4 +-
 t/import-twice.t                         |   17 +
 t/inline-environment.t                   |   23 +-
 t/lib/Specio/Library/CannotSub.pm        |   12 +
 t/lib/Specio/Library/Coercions.pm        |   28 +
 t/lib/Specio/Library/NoInline.pm         |   35 +
 t/lib/Specio/Library/WithSubs.pm         |   17 +
 t/library-with-subs.t                    |   18 +
 t/map.t                                  |  123 ++++
 t/subs.t                                 |  132 ++++
 t/{string-sanity.t => tuple.t}           |  271 +++++---
 tidyall.ini                              |   29 +-
 xt/author/00-compile.t                   |    9 +-
 xt/author/eol.t                          |   19 +
 xt/author/no-ref-util.t                  |   33 +
 xt/author/no-tabs.t                      |   19 +
 xt/author/pod-spell.t                    |   11 +
 xt/author/tidyall.t                      |    4 +-
 79 files changed, 5947 insertions(+), 1888 deletions(-)
 create mode 100644 appveyor.yml
 create mode 100644 lib/Specio/Constraint/Structurable.pm
 create mode 100644 lib/Specio/Constraint/Structured.pm
 create mode 100644 lib/Specio/Library/Structured.pm
 create mode 100644 lib/Specio/Library/Structured/Dict.pm
 create mode 100644 lib/Specio/Library/Structured/Map.pm
 create mode 100644 lib/Specio/Library/Structured/Tuple.pm
 create mode 100644 lib/Specio/Subs.pm
 create mode 100644 t/additional-exports.t
 create mode 100644 t/any-does-isa.t
 create mode 100644 t/dict.t
 create mode 100644 t/import-twice.t
 create mode 100644 t/lib/Specio/Library/CannotSub.pm
 create mode 100644 t/lib/Specio/Library/Coercions.pm
 create mode 100644 t/lib/Specio/Library/NoInline.pm
 create mode 100644 t/lib/Specio/Library/WithSubs.pm
 create mode 100644 t/library-with-subs.t
 create mode 100644 t/map.t
 create mode 100644 t/subs.t
 copy t/{string-sanity.t => tuple.t} (54%)
 create mode 100644 xt/author/no-ref-util.t

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libspecio-perl.git

_______________________________________________
Pkg-perl-cvs-commits mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to