Skip to content

Commit

Permalink
release v0.035
Browse files Browse the repository at this point in the history
 - update Mojolicious to 5.57 for improved map()
 - fix extra blank line in robots.txt test
 - ignore vim swap files on windows
 - fix strftime for Windows
 - fix test reading files without utf-8 flag
 - make `bundle theme` copy to given directory
 - redo the setup help for new defaults
 - make blog pagination use directories
 - allow list pages to consist of directories
 - automatically remove "index.html" from URLs
 - update Beam::Wire to fix warning on perl 5.20
 - process document content as a template
 - allow arguments to included templates
 - add a theme method to build template from string
 - do not watch built-in theme dirs for changes
 - add deploy help documentation
 - add remote attr to git deploy
 - test that git deploy's path has a default
 - set a default build dir and auto-create it
 - make site theme default to bundled default theme
 - make file deploy default to the current directory
 - add test to check categories in atom feed
 - fix categories in atom feed
 - fix default theme list bullets on a separate line
 - fix static app builds hidden directories like .git
 - show an error if no theme name given to bundle
 - allow pod from things without .pm, .pl, or .pod
 - add missing DESCRIPTION to some modules
 - remove spurious doc lines
 - add release v0.034 announcement
  • Loading branch information
preaction committed Feb 9, 2015
1 parent 7914da6 commit b1179ca
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 17 deletions.
6 changes: 3 additions & 3 deletions Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ my %module_build_args = (
"Doug Bell <preaction\@cpan.org>"
],
"dist_name" => "Statocles",
"dist_version" => "0.034",
"dist_version" => "0.035",
"license" => "perl",
"module_name" => "Statocles",
"recommends" => {
Expand All @@ -30,14 +30,14 @@ my %module_build_args = (
},
"recursive_test_files" => 1,
"requires" => {
"Beam::Wire" => 0,
"Beam::Wire" => "1.010",
"Encode" => 0,
"File::Copy::Recursive" => 0,
"File::Share" => 0,
"Git::Repository" => 0,
"Import::Base" => "0.009",
"List::MoreUtils" => 0,
"Mojolicious" => "5.41",
"Mojolicious" => "5.57",
"Moo::Lax" => 0,
"Path::Tiny" => "0.054",
"Pod::Usage::Return" => 0,
Expand Down
34 changes: 33 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,38 @@
Changelog for Statocles

0.034 2015-01-25T06:15:51
0.035 2015-02-09T02:51:15
- update Mojolicious to 5.57 for improved map()
- fix extra blank line in robots.txt test
- ignore vim swap files on windows
- fix strftime for Windows
- fix test reading files without utf-8 flag
- make `bundle theme` copy to given directory
- redo the setup help for new defaults
- make blog pagination use directories
- allow list pages to consist of directories
- automatically remove "index.html" from URLs
- update Beam::Wire to fix warning on perl 5.20
- process document content as a template
- allow arguments to included templates
- add a theme method to build template from string
- do not watch built-in theme dirs for changes
- add deploy help documentation
- add remote attr to git deploy
- test that git deploy's path has a default
- set a default build dir and auto-create it
- make site theme default to bundled default theme
- make file deploy default to the current directory
- add test to check categories in atom feed
- fix categories in atom feed
- fix default theme list bullets on a separate line
- fix static app builds hidden directories like .git
- show an error if no theme name given to bundle
- allow pod from things without .pm, .pl, or .pod
- add missing DESCRIPTION to some modules
- remove spurious doc lines
- add release v0.034 announcement

0.034 2015-01-25T06:15:51Z
- add dzil plugin for prereqs and compile tests
- add features and install instructions on home page
- update Statocles site for new default theme
Expand Down
10 changes: 5 additions & 5 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ my %WriteMakefileArgs = (
"MIN_PERL_VERSION" => "5.010",
"NAME" => "Statocles",
"PREREQ_PM" => {
"Beam::Wire" => 0,
"Beam::Wire" => "1.010",
"Encode" => 0,
"File::Copy::Recursive" => 0,
"File::Share" => 0,
"Git::Repository" => 0,
"Import::Base" => "0.009",
"List::MoreUtils" => 0,
"Mojolicious" => "5.41",
"Mojolicious" => "5.57",
"Moo::Lax" => 0,
"Path::Tiny" => "0.054",
"Pod::Usage::Return" => 0,
Expand All @@ -62,15 +62,15 @@ my %WriteMakefileArgs = (
"Test::Exception" => 0,
"Test::More" => "1.001005"
},
"VERSION" => "0.034",
"VERSION" => "0.035",
"test" => {
"TESTS" => "t/*.t t/app/*.t t/bin/*.t t/deploy/*.t t/page/*.t t/store/*.t t/theme/*.t"
}
);


my %FallbackPrereqs = (
"Beam::Wire" => 0,
"Beam::Wire" => "1.010",
"Capture::Tiny" => 0,
"Dir::Self" => 0,
"Encode" => 0,
Expand All @@ -85,7 +85,7 @@ my %FallbackPrereqs = (
"Import::Base" => "0.009",
"List::MoreUtils" => 0,
"Module::Build" => "0.3601",
"Mojolicious" => "5.41",
"Mojolicious" => "5.57",
"Moo::Lax" => 0,
"Path::Tiny" => "0.054",
"Pod::Usage::Return" => 0,
Expand Down
10 changes: 7 additions & 3 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ NAME
Statocles - A static site generator

VERSION
version 0.034
version 0.035

SYNOPSIS
# !!! Read the Getting Started guide to set up a site.yml config file
Expand Down Expand Up @@ -132,8 +132,12 @@ SEE ALSO
AUTHOR
Doug Bell <preaction@cpan.org>

CONTRIBUTOR
tadegenban <youyouken@126.com>
CONTRIBUTORS
* Doug Bell <preaction@users.noreply.github.com>

* tadegenban <youyouken@126.com>

* Vladimir Lettiev <thecrux@gmail.com>

COPYRIGHT AND LICENSE
This software is copyright (c) 2015 by Doug Bell.
Expand Down
8 changes: 5 additions & 3 deletions README.mkdn
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Statocles - A static site generator

# VERSION

version 0.034
version 0.035

# STATUS

Expand Down Expand Up @@ -137,9 +137,11 @@ them at [https://staticsitegenerators.net](https://staticsitegenerators.net).

Doug Bell <preaction@cpan.org>

# CONTRIBUTOR
# CONTRIBUTORS

tadegenban <youyouken@126.com>
- Doug Bell <preaction@users.noreply.github.com>
- tadegenban <youyouken@126.com>
- Vladimir Lettiev <thecrux@gmail.com>

# COPYRIGHT AND LICENSE

Expand Down
4 changes: 2 additions & 2 deletions cpanfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
requires "Beam::Wire" => "0";
requires "Beam::Wire" => "1.010";
requires "Encode" => "0";
requires "File::Copy::Recursive" => "0";
requires "File::Share" => "0";
requires "Git::Repository" => "0";
requires "Import::Base" => "0.009";
requires "List::MoreUtils" => "0";
requires "Mojolicious" => "5.41";
requires "Mojolicious" => "5.57";
requires "Moo::Lax" => "0";
requires "Path::Tiny" => "0.054";
requires "Pod::Usage::Return" => "0";
Expand Down

0 comments on commit b1179ca

Please sign in to comment.