commit: d8aae578e0468a0fbb1fbc13a707a2e6288072b7
parent e1649078923d2c2df543f83e6388557fba65e6a0
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Sat, 14 Oct 2023 18:31:07 +0200
Version 1.0.5
Diffstat:
4 files changed, 41 insertions(+), 2 deletions(-)
diff --git a/Changes b/Changes
@@ -0,0 +1,38 @@
+v1.0.5 - 2023-10-14
+ * MANIFEST.SKIP: Ignore unpacked distribution
+ * Fix VERSION
+ * MANIFEST.SKIP: Ignore distribution tarballs
+ * cve-client: Add pod
+ * MANIFEST: Remove t/cve_schema50.CVE-2024-24903.json
+
+v1.0.4 - 2023-03-27
+ * Makefile.PL: perltidy
+ * Add tests
+ * lib/App/CveClient: Move-in subs of cve-client
+
+v1.0.3 - 2023-03-27
+ * MANIFEST: Add
+ * Makefile.PL: Add trailing-/ on repo URLs, add bugtracker email
+
+v1.0.2 - 2023-03-27
+ * Fix metadata
+ * cve-client: Remove obsolete VERSION_MESSAGE
+
+v1.0.1 - 2023-03-27
+ * cve-client: Add abstract
+ * Makefile.PL: Add repository + homepage metadata
+ * Makefile.PL: Add requirements
+
+v1.0.0 - 2023-03-27
+ * Fix gemini formatting for 5.0
+ * Add handling for schema 5.0
+ * Add support for vendor+product metadata
+ * cve-client: Allow multiple CVEs at once
+ * cve-client: Add -g to usage line
+ * Introduce Makefile.PL
+ * Remove broken quotes around descriptions
+ * Handle error sent from API
+ * Gemtext option
+ * Perl tidy
+ * README.md: Add
+ * Initial Commit
diff --git a/MANIFEST b/MANIFEST
@@ -1,4 +1,5 @@
.perltidyrc
+Changes
cve-client
lib/App/CveClient.pm
Makefile.PL
diff --git a/cve-client b/cve-client
@@ -2,7 +2,7 @@
# CVE-Client: CLI-based client / toolbox for CVE.org
# Copyright © 2021-2023 CVE-Client Authors <https://hacktivis.me/git/cve-client/>
# SPDX-License-Identifier: AGPL-3.0-only
-our $VERSION = 'v1.0.4';
+our $VERSION = 'v1.0.5';
use strict;
use utf8;
no warnings; # Wide Character…
diff --git a/lib/App/CveClient.pm b/lib/App/CveClient.pm
@@ -2,7 +2,7 @@
# Copyright © 2021-2023 CVE-Client Authors <https://hacktivis.me/git/cve-client/>
# SPDX-License-Identifier: AGPL-3.0-only
package App::CveClient;
-our $VERSION = 'v1.0.4';
+our $VERSION = 'v1.0.5';
use warnings;
use strict;