This is 1.2.2

This commit is contained in:
buckket 2017-09-27 00:51:54 +02:00
parent 0bd1874ea9
commit faf196271a
15 changed files with 22 additions and 16 deletions

View File

@ -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.
Initial public release.

View File

@ -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

View File

@ -55,7 +55,7 @@ master_doc = 'index'
# 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

View File

@ -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'

View File

@ -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.
"""

View File

@ -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.
"""

View File

@ -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.
"""

View File

@ -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.
"""

View File

@ -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.
"""

View File

@ -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.
"""

View File

@ -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.
"""

View File

@ -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.
"""

View File

@ -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.
"""

View File

@ -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.
"""

View File

@ -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.
"""