Skip to content

Commit

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

diff --git a/Changes b/Changes
index ec34b50..4bba469 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,16 @@ Revision history for Perl extension Ukigumo-Server

 {{$NEXT}}

+v2.0.0 2014-03-13T10:41:14Z
+
+    - Delete old reports for keeping DB file size constant
+      (cho45)
+    - Compress body and vc_log with enable_compression option
+      (cho45)
+    - Support compare_url (for GitHub webhooks)
+      *** YOU MUST ALTER DETABASE SCHEMA ***
+      (moznion)
+
 v1.1.0 2014-02-20T10:33:14Z

     commit 95b7e83
  • Loading branch information
moznion committed Mar 13, 2014
1 parent c700beb commit d33ab46
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 12 deletions.
10 changes: 10 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@ Revision history for Perl extension Ukigumo-Server

{{$NEXT}}

v2.0.0 2014-03-13T10:41:14Z

- Delete old reports for keeping DB file size constant
(cho45)
- Compress body and vc_log with enable_compression option
(cho45)
- Support compare_url (for GitHub webhooks)
*** YOU MUST ALTER DETABASE SCHEMA ***
(moznion)

v1.1.0 2014-02-20T10:33:14Z

commit 95b7e83c6d51382b8cbc59ad77c90bddca01d964
Expand Down
22 changes: 12 additions & 10 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"tokuhirom <[email protected]>"
],
"dynamic_config" : 0,
"generated_by" : "Minilla/v0.11.0, CPAN::Meta::Converter version 2.120921",
"generated_by" : "Minilla/v0.11.0, CPAN::Meta::Converter version 2.133380",
"license" : [
"perl_5"
],
Expand Down Expand Up @@ -53,12 +53,14 @@
"Amon2::Web" : "0",
"Amon2::Web::Dispatcher::Lite" : "0",
"Capture::Tiny" : "0",
"Compress::Zlib" : "0",
"DBD::SQLite" : "1.33",
"DBI" : "0",
"Data::Page::NoTotalEntries" : "0.02",
"Data::Validator" : "0.08",
"File::Find::Rule" : "0",
"File::ShareDir" : "0",
"FindBin::libs" : "0",
"Getopt::Long" : "0",
"HTML::FromANSI::Tiny" : "0",
"JSON" : "2",
Expand All @@ -72,7 +74,7 @@
"Plack::Middleware::Session" : "0.14",
"Plack::Session::Store::File" : "0",
"Pod::Usage" : "0",
"Router::Simple" : "0",
"Router::Simple" : "0.14",
"Router::Simple::Sinatraish" : "0",
"Starlet" : "0",
"Teng" : "0",
Expand All @@ -84,7 +86,7 @@
"Time::Piece" : "1.20",
"URI::Escape" : "0",
"URI::WithBase" : "0",
"Ukigumo::Common" : "0.03",
"Ukigumo::Common" : "0.04",
"Ukigumo::Constants" : "0",
"parent" : "0",
"perl" : "5.010001"
Expand All @@ -109,27 +111,27 @@
"release_status" : "unstable",
"resources" : {
"bugtracker" : {
"web" : "https://github.com/ukigumo/Ukigumo-Server/issues"
"web" : "https://github.com/ukigumo/ukigumo-server/issues"
},
"homepage" : "https://github.com/ukigumo/Ukigumo-Server",
"homepage" : "https://github.com/ukigumo/ukigumo-server",
"repository" : {
"type" : "git",
"url" : "git://github.com/ukigumo/Ukigumo-Server.git",
"web" : "https://github.com/ukigumo/Ukigumo-Server"
"url" : "git://github.com/ukigumo/ukigumo-server.git",
"web" : "https://github.com/ukigumo/ukigumo-server"
}
},
"version" : "v1.1.0",
"version" : "v2.0.0",
"x_contributors" : [
"xaicron <[email protected]>",
"Kan Fushihara <[email protected]>",
"mattn <[email protected]>",
"Kan Fushihara <[email protected]>",
"Tomohiro Hosaka <[email protected]>",
"studio3104 <[email protected]>",
"moznion <[email protected]>",
"HIROSE Masaaki <[email protected]>",
"Takumi Sakamoto <[email protected]>",
"Songmu <[email protected]>",
"cho45 <[email protected]>"
"cho45 <[email protected]>",
"moznion <[email protected]>"
]
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.org/ukigumo/Ukigumo-Server.png?branch=master)](https://travis-ci.org/ukigumo/Ukigumo-Server) [![Coverage Status](https://coveralls.io/repos/ukigumo/Ukigumo-Server/badge.png?branch=master)](https://coveralls.io/r/ukigumo/Ukigumo-Server?branch=master)
[![Build Status](https://travis-ci.org/ukigumo/ukigumo-server.png?branch=master)](https://travis-ci.org/ukigumo/ukigumo-server) [![Coverage Status](https://coveralls.io/repos/ukigumo/ukigumo-server/badge.png?branch=master)](https://coveralls.io/r/ukigumo/ukigumo-server?branch=master)
# NAME

Ukigumo::Server - Testing report storage Server
Expand Down
2 changes: 1 addition & 1 deletion lib/Ukigumo/Server.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Ukigumo::Server;
use strict;
use warnings;
use 5.010001;
use version; our $VERSION = version->declare('v1.1.0');
use version; our $VERSION = version->declare('v2.0.0');

use parent qw(Amon2);
use Carp;
Expand Down

0 comments on commit d33ab46

Please sign in to comment.