diff --git a/META.info b/META.info index c6cdc50..9960eaf 100644 --- a/META.info +++ b/META.info @@ -19,5 +19,5 @@ "Auth::SCRAM::Server": "lib/Auth/SCRAM/Server.pm6" }, "source-url": "git://github.com/MARTIMM/Auth-SCRAM.git", - "version": "v0.4.4" + "version": "v0.4.5" } diff --git a/doc/CHANGES.md b/doc/CHANGES.md index bac57f0..ac82db9 100644 --- a/doc/CHANGES.md +++ b/doc/CHANGES.md @@ -4,6 +4,8 @@ See [semantic versioning](http://semver.org/). Please note point 4. on that page: *Major version zero (0.y.z) is for initial development. Anything may change at any time. The public API should not be considered stable.* +* 0.4.5 + * Typo in Server pod documentation * 0.4.4 * Removed todo from Server.pm6 * Completed documentation diff --git a/doc/Server.pdf b/doc/Server.pdf index f7527c3..83348fe 100644 Binary files a/doc/Server.pdf and b/doc/Server.pdf differ diff --git a/lib/Auth/SCRAM/Server.pod6 b/lib/Auth/SCRAM/Server.pod6 index fb5ecc3..c0d0755 100644 --- a/lib/Auth/SCRAM/Server.pod6 +++ b/lib/Auth/SCRAM/Server.pod6 @@ -4,7 +4,7 @@ use v6.c; =TITLE role Auth::SCRAM::Server -=SUBTITLE Client side authentication using SCRAM +=SUBTITLE Server side authentication using SCRAM unit package Auth; class SCRAM::Server { ... }