You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by ie...@apache.org on 2020/07/02 09:07:31 UTC

[avro] branch branch-1.10 updated (6b55656 -> 5eda26b)

This is an automated email from the ASF dual-hosted git repository.

iemejia pushed a change to branch branch-1.10
in repository https://gitbox.apache.org/repos/asf/avro.git.


    from 6b55656  AVRO-2865: Actually bump the jar.
     new e115bc2  Fix missing 1.10.0 update on js package description
     new 5eda26b  AVRO-1461: Distribute Perl API on CPAN

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


Summary of changes:
 lang/js/package-lock.json |  2 +-
 lang/js/package.json      |  2 +-
 lang/perl/Makefile.PL     | 14 ++++++++++++++
 3 files changed, 16 insertions(+), 2 deletions(-)


[avro] 01/02: Fix missing 1.10.0 update on js package description

Posted by ie...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

iemejia pushed a commit to branch branch-1.10
in repository https://gitbox.apache.org/repos/asf/avro.git

commit e115bc2d1af5afb83d7ee38b79af479259c32a20
Author: Ismaël Mejía <ie...@gmail.com>
AuthorDate: Mon Jun 29 17:28:51 2020 +0200

    Fix missing 1.10.0 update on js package description
---
 lang/js/package-lock.json | 2 +-
 lang/js/package.json      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lang/js/package-lock.json b/lang/js/package-lock.json
index 8cfdaab..6c54135 100644
--- a/lang/js/package-lock.json
+++ b/lang/js/package-lock.json
@@ -1,6 +1,6 @@
 {
   "name": "avro-js",
-  "version": "1.9.0",
+  "version": "1.10.0",
   "lockfileVersion": 1,
   "requires": true,
   "dependencies": {
diff --git a/lang/js/package.json b/lang/js/package.json
index e55308f..d570180 100644
--- a/lang/js/package.json
+++ b/lang/js/package.json
@@ -1,6 +1,6 @@
 {
   "name": "avro-js",
-  "version": "1.9.0",
+  "version": "1.10.0",
   "author": "Avro Developers <de...@avro.apache.org>",
   "description": "JavaScript Avro implementation",
   "contributors": [


[avro] 02/02: AVRO-1461: Distribute Perl API on CPAN

Posted by ie...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

iemejia pushed a commit to branch branch-1.10
in repository https://gitbox.apache.org/repos/asf/avro.git

commit 5eda26b266e0c74e99767b33b9baa5b79f250d1a
Author: Kengo Seki <se...@apache.org>
AuthorDate: Thu Jul 2 13:41:55 2020 +0900

    AVRO-1461: Distribute Perl API on CPAN
    
    Fix Makefile.PL so that PAUSE can identify Avro packages and corresponding files
---
 lang/perl/Makefile.PL | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/lang/perl/Makefile.PL b/lang/perl/Makefile.PL
index 751fc33..69447e5 100644
--- a/lang/perl/Makefile.PL
+++ b/lang/perl/Makefile.PL
@@ -50,4 +50,18 @@ unless ($Config{use64bitint}) {
 }
 auto_set_repository();
 
+my %packages = (
+    'Avro'                    => 'lib/Avro.pm',
+    'Avro::BinaryDecoder'     => 'lib/Avro/BinaryDecoder.pm',
+    'Avro::BinaryEncoder'     => 'lib/Avro/BinaryEncoder.pm',
+    'Avro::DataFile'          => 'lib/Avro/DataFile.pm',
+    'Avro::DataFileReader'    => 'lib/Avro/DataFileReader.pm',
+    'Avro::DataFileWriter'    => 'lib/Avro/DataFileWriter.pm',
+    'Avro::Protocol'          => 'lib/Avro/Protocol.pm',
+    'Avro::Protocol::Message' => 'lib/Avro/Protocol/Message.pm',
+    'Avro::Schema'            => 'lib/Avro/Schema.pm',
+);
+my %provides = map { $_ => { file => $packages{$_}, version => $version } } keys %packages;
+provides(%provides);
+
 WriteMakefile(PM_FILTER => "sed -e 's/\+\+MODULE_VERSION\+\+/$version/'");