From 33fc285e133585c88574c48d830b85cbb8b67abf Mon Sep 17 00:00:00 2001 From: Alexey Melezhik Date: Fri, 26 Apr 2024 16:14:48 +0300 Subject: [PATCH] 0.2.3 release! --- Changes | 3 +++ META6.json | 4 ++-- docs/acl.md | 9 +++------ lib/Sparky.rakumod | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Changes b/Changes index 2b3d812..c26fa2b 100644 --- a/Changes +++ b/Changes @@ -2,8 +2,11 @@ Revision history for Sparky {{$NEXT}} +0.2.3 2024-04-26T16:30:00Z + - Change authentication protocol to oauth 2.0 + - Bump Sparrow6 version 0.2.2 2024-03-21T14:30:00Z diff --git a/META6.json b/META6.json index 58e2f8b..3ed1617 100644 --- a/META6.json +++ b/META6.json @@ -10,7 +10,7 @@ "DBIish::Pool", "JSON::Fast", "HTTP::Tiny", - "Sparrow6:ver<0.0.45+>", + "Sparrow6:ver<0.0.47+>", "Sparrowdo:ver<0.1.27+>", "Time::Crontab", "File::Directory::Tree", @@ -42,5 +42,5 @@ }, "tags" : [ ], "test-depends" : [ ], - "version" : "0.2.2" + "version" : "0.2.3" } diff --git a/docs/acl.md b/docs/acl.md index 7a23c0c..b8b6ccb 100644 --- a/docs/acl.md +++ b/docs/acl.md @@ -62,7 +62,7 @@ acl/hosts/host-bar/list.yaml acl/hosts/host-baz/list.yaml ``` -Host specific ACL override default ACL and has the same DSL to describe access rules. +Host specific ACL overrides default ACL and has the same semantic. # Explicit deny @@ -79,11 +79,8 @@ projects: - bad_guy ``` -This code code allows all users to execute hello-world sparky project, besides a user with login bad_guy +This code allows all users to execute hello-world sparky project, besides a user with a login bad_guy ## Access to everyone -To allow any user to run run any resources just remove any list.yaml files from Sparky configuration - - - +To allow any user to run any resources just remove any list.yaml files from Sparky configuration \ No newline at end of file diff --git a/lib/Sparky.rakumod b/lib/Sparky.rakumod index a4cfe89..7841c64 100644 --- a/lib/Sparky.rakumod +++ b/lib/Sparky.rakumod @@ -1,6 +1,6 @@ use v6; -unit module Sparky:ver<0.2.2>; +unit module Sparky:ver<0.2.3>; use YAMLish; use DBIish; use Time::Crontab;