Skip to content

Commit

Permalink
Checking in changes prior to tagging of version v3.1.23.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 166abeb..c4deffc 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,9 @@ Revision history for Perl extension Minilla
 
 {{$NEXT}}
 
+v3.1.23 2023-10-07T10:26:39Z
+    - Add documentation for module_maker option (giftnuss #330)
+
 v3.1.22 2023-07-08T05:48:31Z
     - Support package version syntax (#328)
  • Loading branch information
skaji committed Oct 7, 2023
1 parent 553fc8e commit 48eab9e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,9 @@ Revision history for Perl extension Minilla

{{$NEXT}}

v3.1.23 2023-10-07T10:26:39Z
- Add documentation for module_maker option (giftnuss #330)

v3.1.22 2023-07-08T05:48:31Z
- Support package version syntax (#328)

Expand Down
5 changes: 3 additions & 2 deletions META.json
Expand Up @@ -4,7 +4,7 @@
"Tokuhiro Matsuno < tokuhirom@gmail.com >"
],
"dynamic_config" : 0,
"generated_by" : "Minilla/v3.1.21, CPAN::Meta::Converter version 2.150010",
"generated_by" : "Minilla/v3.1.22, CPAN::Meta::Converter version 2.150010",
"license" : [
"perl_5"
],
Expand Down Expand Up @@ -112,7 +112,7 @@
"web" : "https://github.com/tokuhirom/Minilla"
}
},
"version" : "v3.1.22",
"version" : "v3.1.23",
"x_contributors" : [
"Alex Kapranoff <alex@kapranoff.ru>",
"Alex Kapranoff <kappa@yandex.ru>",
Expand Down Expand Up @@ -146,6 +146,7 @@
"Peter Oliver <git@mavit.org.uk>",
"Pine Mizune <pinemz@gmail.com>",
"Ryo Okamoto <ryo@aquahill.net>",
"Sebastian B. Knapp <news@young-workers.de>",
"Shohei YOSHIDA <syohex@gmail.com>",
"Shoichi Kaji <skaji@cpan.org>",
"Shoichi Kaji <skaji@outlook.com>",
Expand Down
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -142,6 +142,12 @@ But, you can write configurations to _minil.toml_ file in [TOML](https://github.

You can write 'name' instead of automatically detecting project name out of the directory name.

- module\_maker

Minilla supports three module building mechanisms. Module::Build::Tiny is the default one and Module::Build or ExtUtils::MakeMaker are the alternatives. See also [FAQ](#faq) section in this document.

module_maker="ModuleBuild"

- readme\_from

readme_from="lib/My/Foo.pod"
Expand Down
2 changes: 1 addition & 1 deletion lib/Minilla.pm
Expand Up @@ -2,7 +2,7 @@ package Minilla;
use strict;
use warnings;
use 5.010001;
use version; our $VERSION = version->declare("v3.1.22");
use version; our $VERSION = version->declare("v3.1.23");

our $DEBUG;
our $AUTO_INSTALL;
Expand Down

0 comments on commit 48eab9e

Please sign in to comment.