-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an API version to META6.json and add a
Changes
file
- Loading branch information
Patrick Böker
committed
Dec 30, 2024
1 parent
97e685e
commit 37bbe54
Showing
3 changed files
with
34 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |