Skip to content

Commit

Permalink
0.109
Browse files Browse the repository at this point in the history
  • Loading branch information
dwarring committed Sep 7, 2022
1 parent 32e09f4 commit f480da3
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 14 deletions.
5 changes: 5 additions & 0 deletions Changes
@@ -1,3 +1,8 @@
{{$NEXT}}

0.109 2022-09-08T07:31:22+12:00
* fix or disable some live tests #51

2018-11-27 JNS

* Decode headers with latin-1 not ascii to fix #29
Expand Down
41 changes: 28 additions & 13 deletions META6.json
@@ -1,15 +1,30 @@
{
"perl" : "6.c",
"name" : "LWP::Simple",
"version" : "0.108",
"description" : "LWP::Simple quick & dirty implementation for Raku",
"depends" : [ "MIME::Base64", "URI" ],
"test-depends" : [ "JSON::Tiny" ],
"provides" : {
"LWP::Simple" : "lib/LWP/Simple.rakumod"
},
"license": "Artistic-2.0",
"authors" : ["cosimo", "niner","Raku community modules team"],
"auth" : "zef:raku-community-modules",
"source-url" : "https://github.com/raku-community-modules/LWP-Simple.git"
"auth": "zef:raku-community-modules",
"authors": [
"cosimo",
"niner",
"Raku community modules team"
],
"build-depends": [
],
"depends": [
"MIME::Base64",
"URI"
],
"description": "LWP::Simple quick & dirty implementation for Raku",
"license": "Artistic-2.0",
"name": "LWP::Simple",
"perl": "6.c",
"provides": {
"LWP::Simple": "lib/LWP/Simple.rakumod"
},
"resources": [
],
"source-url": "https://github.com/raku-community-modules/LWP-Simple.git",
"tags": [
],
"test-depends": [
"JSON::Tiny"
],
"version": "0.109"
}
6 changes: 6 additions & 0 deletions dist.ini
@@ -0,0 +1,6 @@
; dist.ini
[ReadmeFromPod]
; if you want to disable generating README.md from main module's pod, then:
enabled = false

[UploadToZef]
2 changes: 1 addition & 1 deletion lib/LWP/Simple.rakumod
Expand Up @@ -6,7 +6,7 @@ use MIME::Base64;
use URI;
use URI::Escape;

unit class LWP::Simple:auth<perl6>:ver<0.108>;
unit class LWP::Simple:auth<zef:raku-community-modules>:ver<0.109>;
constant $VERSION = ::?CLASS.^ver;


Expand Down

0 comments on commit f480da3

Please sign in to comment.