feedwarrior

Slim, portable tooling for creating and distributing decentralized append logs
git clone git://git.defalsify.org/logwarrior.git
Log | Files | Refs | README | LICENSE

commit 104f0462128d96eb9ff7686229512240512e5759
parent 3374ac5ee73cfc85f7ddbc5da4845bbe4c6bbfcd
Author: nolash <dev@holbrook.no>
Date:   Tue, 30 Jun 2020 00:30:51 +0200

Rename -r flag to --headers

Diffstat:
MCHANGELOG | 2++
MVERSION | 2+-
Mscripts/feedwarrior | 2+-
Msetup.py | 2+-
4 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG @@ -1,3 +1,5 @@ +* 0.2.0 + - Rename raw flag to headers * 0.1.4 - Add flag for raw headers in entry output * 0.1.3 diff --git a/VERSION b/VERSION @@ -1 +1 @@ -0.1.4 +0.2.0 diff --git a/scripts/feedwarrior b/scripts/feedwarrior @@ -26,7 +26,7 @@ argparser = argparse.ArgumentParser(description='create and manipulate feedwarri argparser.add_argument('-l', help='feed log to operate on') argparser.add_argument('-c', type=str, help='configuration file') argparser.add_argument('-v', action='store_true', help='be verbose') -argparser.add_argument('-r', action='store_true', help='raw feed output') +argparser.add_argument('--headers', action='store_true', help='add headers in output") sub = argparser.add_subparsers() # TODO: add subparser to same level flags as main parser sub.dest = 'command' diff --git a/setup.py b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='feedwarrior', - version='0.1.4', + version='0.2.0', description='feeds, warrior style', author='Louis Holbrook', author_email='dev@holbrook.no',