Skip to content

Commit

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

diff --git a/Changes b/Changes
index f8b7562..8ca78d5 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,12 @@ Revision history for Perl extension Ukigumo-Server

 {{$NEXT}}

+v1.0.0 2013-10-03T16:58:42Z
+
+    - Switch to Kolon syntax
+    - Remove deps on Text::Xslate::Bridge::TT2Like
+
+
 0.01 2013-10-03T02:12:17Z

     - original version
  • Loading branch information
Songmu committed Oct 3, 2013
1 parent 2344848 commit ea1d3c3
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
6 changes: 6 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ Revision history for Perl extension Ukigumo-Server

{{$NEXT}}

v1.0.0 2013-10-03T16:58:42Z

- Switch to Kolon syntax
- Remove deps on Text::Xslate::Bridge::TT2Like


0.01 2013-10-03T02:12:17Z

- original version
Expand Down
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@
"Plack::Session::Store::File" : "0",
"Pod::Usage" : "0",
"Router::Simple" : "0",
"Starlet" : "0",
"Teng" : "0",
"Text::Markdown" : "1",
"Text::Xslate" : "1.1005",
"Text::Xslate::Bridge::TT2Like" : "0.00008",
"Text::Xslate::Util" : "0",
"Time::Duration" : "0",
"Time::Duration::ja" : "0",
Expand Down Expand Up @@ -114,7 +114,7 @@
"web" : "https://github.com/ukigumo/Ukigumo-Server"
}
},
"version" : "0.01",
"version" : "v1.0.0",
"x_contributors" : [
"xaicron <xaicron@gmail.com>",
"cho45 <cho45@lowreal.net>",
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ Or you can use git repo instead of `cpanm Ukigumo::Server` for launching [Ukigum
# Then, run the http server!
% carton exec perl local/bin/ukigumo-server

# SEE ALSO

[ukigumo-server](http://search.cpan.org/perldoc?ukigumo-server)

# LICENSE

Copyright (C) tokuhirom.
Expand Down
4 changes: 2 additions & 2 deletions lib/Ukigumo/Server.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ package Ukigumo::Server;
use strict;
use warnings;
use 5.010001;
use version; our $VERSION = version->declare('v1.0.0');

use parent qw(Amon2);
use Carp;
use DBI;
Expand All @@ -12,8 +14,6 @@ use Ukigumo::Server::DB;

__PACKAGE__->load_plugins(qw(ShareDir));

our $VERSION = '0.01';

sub config {
my ($c, $conf) = @_;
state $config = $conf || do {
Expand Down

0 comments on commit ea1d3c3

Please sign in to comment.