From 37bbe544a95d43b2e335861b4a255a8936c61982 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20B=C3=B6ker?= Date: Mon, 30 Dec 2024 22:34:11 +0100 Subject: [PATCH] Add an API version to META6.json and add a `Changes` file --- .github/pull_request_template.md | 6 ++++++ Changes | 5 +++++ META6.json | 37 ++++++++++++++++++++------------ 3 files changed, 34 insertions(+), 14 deletions(-) create mode 100644 .github/pull_request_template.md create mode 100644 Changes diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..cc4d48a --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,6 @@ +Checklist +========= +(Feel free to delete this text once you went through it.) + +- Did you add an entry to the `Changes` file? + diff --git a/Changes b/Changes new file mode 100644 index 0000000..bf93ba6 --- /dev/null +++ b/Changes @@ -0,0 +1,5 @@ +Revision history for Cro::TLS + +{{NEXT}} + - Change dependency management to allow individual Cro modules to be + updated individually. diff --git a/META6.json b/META6.json index 95d92bd..e62184c 100644 --- a/META6.json +++ b/META6.json @@ -1,16 +1,25 @@ { - "perl" : "6.*", - "name" : "Cro::TLS", - "version" : "0.8.9", - "auth" : "zef:cro", - "description" : "Cro pipeline components for building services that use TLS.", - "tags" : [ "SSL", "TLS" ], - "authors" : [ "Jonathan Worthington " ], - "license" : "Artistic-2.0", - "depends" : [ "Cro::Core:ver<0.8.9>", "IO::Socket::Async::SSL:ver<0.7.10+>" ], - "provides" : { - "Cro::TLS": "lib/Cro/TLS.pm6" - }, - "resources": [], - "source-url" : "https://github.com/croservices/cro-tls.git" + "name": "Cro::TLS", + "description": "Cro pipeline components for building services that use TLS.", + "version": "0.8.9", + "api": "0", + "auth": "zef:cro", + "perl": "6.*", + "authors": [ + "Jonathan Worthington " + ], + "depends": [ + "Cro::Core:ver<0.8.9>", + "IO::Socket::Async::SSL:ver<0.7.10+>" + ], + "provides": { + "Cro::TLS": "lib/Cro/TLS.pm6" + }, + "resources": [], + "license": "Artistic-2.0", + "tags": [ + "SSL", + "TLS" + ], + "source-url": "https://github.com/croservices/cro-tls.git" }