diff --git a/CHANGES b/CHANGES index ea0763d..4754268 100644 --- a/CHANGES +++ b/CHANGES @@ -3,6 +3,12 @@ Changelog These are all the changes in twtxt since the first public release. +1.2.2 +----- + +- Fixed two minor bugs in cli.py +- Adopt to 2.x changes in aiohttp + 1.2.1 ----- @@ -44,4 +50,4 @@ These are all the changes in twtxt since the first public release. 1.0.0 ----- -Initial public release. \ No newline at end of file +Initial public release. diff --git a/LICENSE b/LICENSE index 09d6c3b..9a1058a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2016 buckket +Copyright (c) 2016-2017 buckket Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docs/conf.py b/docs/conf.py index db46ff0..d4c4ce4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,7 +55,7 @@ # General information about the project. project = u'twtxt' -copyright = u'2016, buckket' +copyright = u'2017, buckket' author = u'buckket' # The version info for the project you're documenting, acts as replacement for diff --git a/twtxt/__init__.py b/twtxt/__init__.py index 8cb2760..044efc3 100644 --- a/twtxt/__init__.py +++ b/twtxt/__init__.py @@ -4,9 +4,9 @@ Decentralised, minimalist microblogging service for hackers. - :copyright: (c) 2016 by buckket. + :copyright: (c) 2016-2017 by buckket. :license: MIT, see LICENSE for more details. """ -__version__ = '1.3.0-dev' +__version__ = '1.2.2' diff --git a/twtxt/__main__.py b/twtxt/__main__.py index 9208c49..23c0abb 100644 --- a/twtxt/__main__.py +++ b/twtxt/__main__.py @@ -6,7 +6,7 @@ Alias for twtxt.cli for the command line. - :copyright: (c) 2016 by buckket. + :copyright: (c) 2016-2017 by buckket. :license: MIT, see LICENSE for more details. """ diff --git a/twtxt/cache.py b/twtxt/cache.py index b4b3af6..0b87d19 100644 --- a/twtxt/cache.py +++ b/twtxt/cache.py @@ -4,7 +4,7 @@ This module implements a caching system for storing tweets. - :copyright: (c) 2016 by buckket. + :copyright: (c) 2016-2017 by buckket. :license: MIT, see LICENSE for more details. """ diff --git a/twtxt/cli.py b/twtxt/cli.py index 8881f7b..4d08491 100644 --- a/twtxt/cli.py +++ b/twtxt/cli.py @@ -4,7 +4,7 @@ This module implements the command-line interface of twtxt. - :copyright: (c) 2016 by buckket. + :copyright: (c) 2016-2017 by buckket. :license: MIT, see LICENSE for more details. """ diff --git a/twtxt/config.py b/twtxt/config.py index ca9c8f8..6fab147 100644 --- a/twtxt/config.py +++ b/twtxt/config.py @@ -4,7 +4,7 @@ This module implements the config file parser/writer. - :copyright: (c) 2016 by buckket. + :copyright: (c) 2016-2017 by buckket. :license: MIT, see LICENSE for more details. """ diff --git a/twtxt/helper.py b/twtxt/helper.py index d249e13..148e96c 100644 --- a/twtxt/helper.py +++ b/twtxt/helper.py @@ -4,7 +4,7 @@ This module implements various helper for use in twtxt. - :copyright: (c) 2016 by buckket. + :copyright: (c) 2016-2017 by buckket. :license: MIT, see LICENSE for more details. """ diff --git a/twtxt/log.py b/twtxt/log.py index 7464556..545b1ad 100644 --- a/twtxt/log.py +++ b/twtxt/log.py @@ -4,7 +4,7 @@ This module configures the logging module for twtxt. - :copyright: (c) 2016 by buckket. + :copyright: (c) 2016-2017 by buckket. :license: MIT, see LICENSE for more details. """ diff --git a/twtxt/mentions.py b/twtxt/mentions.py index 315eb2e..6f5818d 100644 --- a/twtxt/mentions.py +++ b/twtxt/mentions.py @@ -4,7 +4,7 @@ This module implements functions for handling mentions in twtxt. - :copyright: (c) 2016 by buckket. + :copyright: (c) 2016-2017 by buckket. :license: MIT, see LICENSE for more details. """ diff --git a/twtxt/models.py b/twtxt/models.py index 57d977e..9705c0c 100644 --- a/twtxt/models.py +++ b/twtxt/models.py @@ -4,7 +4,7 @@ This module implements the main models used in twtxt. - :copyright: (c) 2016 by buckket. + :copyright: (c) 2016-2017 by buckket. :license: MIT, see LICENSE for more details. """ diff --git a/twtxt/parser.py b/twtxt/parser.py index dc5d739..5d6632c 100644 --- a/twtxt/parser.py +++ b/twtxt/parser.py @@ -4,7 +4,7 @@ This module implements the parser for twtxt files. - :copyright: (c) 2016 by buckket. + :copyright: (c) 2016-2017 by buckket. :license: MIT, see LICENSE for more details. """ diff --git a/twtxt/twfile.py b/twtxt/twfile.py index 6aa982a..1bde08e 100644 --- a/twtxt/twfile.py +++ b/twtxt/twfile.py @@ -4,7 +4,7 @@ This module handles interaction with the local twtxt file. - :copyright: (c) 2016 by buckket. + :copyright: (c) 2016-2017 by buckket. :license: MIT, see LICENSE for more details. """ diff --git a/twtxt/twhttp.py b/twtxt/twhttp.py index 1925ad9..358ef94 100644 --- a/twtxt/twhttp.py +++ b/twtxt/twhttp.py @@ -4,7 +4,7 @@ This module handles HTTP requests via aiohttp/asyncio. - :copyright: (c) 2016 by buckket. + :copyright: (c) 2016-2017 by buckket. :license: MIT, see LICENSE for more details. """