From 13896a3903b969a421ea9cb1261cb0e3515ac15f Mon Sep 17 00:00:00 2001 From: dogoncouch Date: Thu, 5 Apr 2018 17:57:17 -0400 Subject: [PATCH] Update version --- docs/README-API.md | 1 + logdissect/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/README-API.md b/docs/README-API.md index f4baf91..2fc2462 100644 --- a/docs/README-API.md +++ b/docs/README-API.md @@ -108,6 +108,7 @@ There is a blank parser that can be used to create custom parsers on the fly. This example will create a parser to capture a unix timestamp with a colon followed by a message: ``` myparser = logdissect.parsers.blank.ParseModule() +myparser.name = 'my parser' myparser.format_regex = '^(\d+\.?\d*):\s(.*)$' myparser.fields = ['date_stamp', 'message'] myparser.datestamp_type = 'unix' diff --git a/logdissect/__init__.py b/logdissect/__init__.py index 6af14c4..5a55646 100644 --- a/logdissect/__init__.py +++ b/logdissect/__init__.py @@ -1,4 +1,4 @@ -__version__ = '3.1' +__version__ = '3.1.1-dev' __author__ = 'Dan Persons ' __license__ = 'MIT License' __github__ = 'https://github.com/dogoncouch/logdissect'