The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 16
LICENSE 11
META.json 510
META.yml 59
README 11
lib/VCS/Lite/Delta.pm 21
lib/VCS/Lite.pm 11
7 files changed (This is a version diff) 1629
@@ -1,4 +1,9 @@
-Revision history for Perl extension VCS::Lite.
+Revision history for VCS::Lite
+==============================
+
+0.11    2014-03-25
+        - added new git repo links.
+        - META file updates.
 
 0.10    2013-01-20
         - change file dates changed to meet W3CDTF standards.
@@ -1,7 +1,7 @@
 LICENSE FOR VCS::Lite
 
 Copyright © 2002-2009 Ivor Williams
-Copyright © 2009-2013 Barbie for Miss Barbell Productions.
+Copyright © 2009-2014 Barbie for Miss Barbell Productions.
 
 This distribution is free software; you can redistribute it and/or
 modify it under the Artistic Licence v2.
@@ -1,6 +1,6 @@
 {
     "name": "VCS-Lite",
-    "version": "0.10",
+    "version": "0.11",
     "abstract": "A minimal version control system",
     "author": ["Barbie <barbie@cpan.org>"],
 
@@ -42,11 +42,11 @@
     "provides": {
         "VCS::Lite": {
             "file": "lib/VCS/Lite.pm",
-            "version": "0.10"
+            "version": "0.11"
         },
         "VCS::Lite::Delta": {
             "file": "lib/VCS/Lite/Delta.pm",
-            "version": "0.10"
+            "version": "0.11"
         }
     },
     "no_index": {
@@ -54,7 +54,12 @@
     },
 
     "resources": {
-        "license": "http://dev.perl.org/licenses/",
-        "bugtracker": { "web": "http://rt.cpan.org/Public/Dist/Display.html?Name=VCS-Lite" }
+        "license": "http://www.perlfoundation.org/artistic_license_2_0",
+        "bugtracker": { "web": "http://rt.cpan.org/Public/Dist/Display.html?Name=VCS-Lite" },
+        "repository": {
+            "url": "git://github.com/barbie/vcs-lite.git",
+            "web": "http://github.com/barbie/vcs-lite",
+            "type": "git"
+        }
     }
 }
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                 VCS-Lite
-version:              0.10
+version:              0.11
 abstract:             A minimal version control system
 author:
   - Barbie <barbie@cpan.org>
@@ -26,17 +26,21 @@ build_requires:
 provides:
   VCS::Lite:
     file:     lib/VCS/Lite.pm
-    version:  0.10
+    version:  0.11
   VCS::Lite::Delta:
     file:     lib/VCS/Lite/Delta.pm
-    version:  0.10
+    version:  0.11
 no_index:
   directory:
     - t
     - examples
 
+resources:
+  license:    http://www.perlfoundation.org/artistic_license_2_0
+  bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=VCS-Lite
+  repository: http://github.com/barbie/vcs-lite
+
 meta-spec:
    version:   1.4
    url:       http://module-build.sourceforge.net/META-spec-v1.4.html
-generated_by: Hand 1.0
-
+generated_by: Barbie's Brain 1.0
@@ -58,7 +58,7 @@ Fixes are dependent upon their severity and my availability. Should a fix not
 be forthcoming, please feel free to (politely) remind me by sending an email
 to barbie@cpan.org .
 
-RT: http://rt.cpan.org/Public/Dist/Display.html?Name=Template-Plugin-WikiFormat
+RT: http://rt.cpan.org/Public/Dist/Display.html?Name=VCS-Lite
 
 AUTHOR
 
@@ -2,7 +2,7 @@ package VCS::Lite::Delta;
 
 use strict;
 use warnings;
-our $VERSION = '0.10';
+our $VERSION = '0.11';
 
 #----------------------------------------------------------------------------
 
@@ -576,4 +576,3 @@ This distribution is free software; you can redistribute it and/or
 modify it under the Artistic Licence v2.
 
 =cut
-
@@ -2,7 +2,7 @@ package VCS::Lite;
 
 use strict;
 use warnings;
-our $VERSION = '0.10';
+our $VERSION = '0.11';
 
 #----------------------------------------------------------------------------