Skip to content

Commit

Permalink
release v0.085
Browse files Browse the repository at this point in the history
    [Added]

    - Added the "dom" attribute to Statocles::Page. This caches the
      parsed HTML for the multiple transformations that must be
      performed. Hopefully this will speed up performance a little bit.

    - Added JSON frontmatter support. Now if the first character of
      a document is a `{`, the frontmatter will be treated as JSON. JSON
      can be a single line (the `}` end bracket must be at the end of
      the line) or multiple lines (the `}` end bracket must be on a line
      by itself).
  • Loading branch information
preaction committed Sep 8, 2017
1 parent f66d886 commit 19997ce
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Changelog for Statocles

{{ $NEXT }}
0.085 2017-09-08 02:25:01-05:00 America/Chicago

[Added]

Expand Down
4 changes: 3 additions & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.008.
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.010.
use strict;
use warnings;

Expand Down Expand Up @@ -34,6 +34,7 @@ my %WriteMakefileArgs = (
"File::Share" => 0,
"Git::Repository" => 0,
"Import::Base" => "0.012",
"JSON::PP" => 0,
"List::UtilsBy" => "0.09",
"Mojolicious" => "6.54",
"Moo" => "2.000001",
Expand Down Expand Up @@ -83,6 +84,7 @@ my %FallbackPrereqs = (
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Import::Base" => "0.012",
"JSON::PP" => 0,
"List::UtilsBy" => "0.09",
"Mojolicious" => "6.54",
"Moo" => "2.000001",
Expand Down
2 changes: 1 addition & 1 deletion 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.084
version 0.085

# STATUS

Expand Down
1 change: 1 addition & 0 deletions cpanfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ requires "Encode" => "0";
requires "File::Share" => "0";
requires "Git::Repository" => "0";
requires "Import::Base" => "0.012";
requires "JSON::PP" => "0";
requires "List::UtilsBy" => "0.09";
requires "Mojolicious" => "6.54";
requires "Moo" => "2.000001";
Expand Down

0 comments on commit 19997ce

Please sign in to comment.