Skip to content

Commit

Permalink
Add an API version to META6.json and add a Changes file
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Böker committed Dec 30, 2024
1 parent 97e685e commit 37bbe54
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 14 deletions.
6 changes: 6 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -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?

5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Revision history for Cro::TLS

{{NEXT}}
- Change dependency management to allow individual Cro modules to be
updated individually.
37 changes: 23 additions & 14 deletions META6.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>" ],
"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 <[email protected]>"
],
"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"
}

0 comments on commit 37bbe54

Please sign in to comment.