Skip to content

Commit

Permalink
This is 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
buckket committed Sep 26, 2017
1 parent 0bd1874 commit faf1962
Show file tree
Hide file tree
Showing 15 changed files with 22 additions and 16 deletions.
8 changes: 7 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----

Expand Down Expand Up @@ -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.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions twtxt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
2 changes: 1 addition & 1 deletion twtxt/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""

Expand Down
2 changes: 1 addition & 1 deletion twtxt/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""

Expand Down
2 changes: 1 addition & 1 deletion twtxt/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""

Expand Down
2 changes: 1 addition & 1 deletion twtxt/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""

Expand Down
2 changes: 1 addition & 1 deletion twtxt/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""

Expand Down
2 changes: 1 addition & 1 deletion twtxt/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""

Expand Down
2 changes: 1 addition & 1 deletion twtxt/mentions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""

Expand Down
2 changes: 1 addition & 1 deletion twtxt/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""

Expand Down
2 changes: 1 addition & 1 deletion twtxt/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""

Expand Down
2 changes: 1 addition & 1 deletion twtxt/twfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""

Expand Down
2 changes: 1 addition & 1 deletion twtxt/twhttp.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""

Expand Down

0 comments on commit faf1962

Please sign in to comment.