Skip to content
This repository was archived by the owner on Jan 13, 2024. It is now read-only.

Commit 7a41c52

Browse files
committed
bump version to 0.7.0
1 parent cfcfae2 commit 7a41c52

22 files changed

+155
-106
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Change log
22

3+
## Version 0.7.0 (2022/07/15)
4+
5+
#### New Features
6+
7+
* [PR#29](https://github.com/SamR1/python-twootfeed/pull/29) - Add token to access feeds ⚠️ **breaking changes**
8+
* [PR#28](https://github.com/SamR1/python-twootfeed/pull/28) - Add Mastodon home timeline
9+
10+
#### Misc
11+
* [PR#30](https://github.com/SamR1/python-twootfeed/pull/30) - URLs update ⚠️ **breaking changes**
12+
* dependencies update
13+
14+
315
## Version 0.6.8 (2021/10/05)
416

517
#### Misc

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# python-twootfeed
2-
**generate an RSS feed from parsed Twitter or Mastodon search and Mastodon bookmarks/favorites**
2+
**generate an RSS feed from parsed Twitter or Mastodon search and Mastodon bookmarks/favorites/home timeline**
33

44
[![PyPI version](https://img.shields.io/pypi/v/twootfeed.svg)](https://pypi.org/project/twootfeed/)
55
[![Downloads](https://pepy.tech/badge/twootfeed)](https://pepy.tech/project/twootfeed)
66
[![Python Version](https://img.shields.io/badge/python-3.6+-brightgreen.svg)](https://python.org)
7+
[![Flask Version](https://img.shields.io/badge/flask-2.1-brightgreen.svg)](http://flask.pocoo.org/)
8+
[![code style: black](https://img.shields.io/badge/code%20style-black-black)](https://black.readthedocs.io/en/stable/)
9+
[![type check: mypy](https://img.shields.io/badge/type%20check-mypy-blue)](http://mypy-lang.org/)
710
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/14d1c00121c04cd2b81453c597639ca6)](https://www.codacy.com/app/SamR1/python-twootfeed)
811
[![Coverage Status](https://coveralls.io/repos/github/SamR1/python-twootfeed/badge.svg?branch=master)](https://coveralls.io/github/SamR1/python-twootfeed?branch=master)
912
[![pipeline status](https://gitlab.com/SamR1/python-twootfeed/badges/master/pipeline.svg)](https://gitlab.com/SamR1/python-twootfeed/commits/master)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.6.8
1+
0.7.0

docs/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 0048b4845a2b64fcd0c4b4b899b87771
3+
config: ac015f087c3654ff4e74bcd47b106784
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/_sources/changelog.md.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Change log
22

3+
## Version 0.7.0 (2022/07/15)
4+
5+
#### New Features
6+
7+
* [PR#29](https://github.com/SamR1/python-twootfeed/pull/29) - Add token to access feeds ⚠️ **breaking changes**
8+
* [PR#28](https://github.com/SamR1/python-twootfeed/pull/28) - Add Mastodon home timeline
9+
10+
#### Misc
11+
* [PR#30](https://github.com/SamR1/python-twootfeed/pull/30) - URLs update ⚠️ **breaking changes**
12+
* dependencies update
13+
14+
315
## Version 0.6.8 (2021/10/05)
416

517
#### Misc

docs/_sources/features.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ The feed displays only the original tweets (not the retweets) and toots, with:
2323
.. warning::
2424

2525
| **twootfeed** is developed for a personal use.
26-
| Tweets and toots are displayed for the user associated to the API keys (feeds may contain items with **restricted visibility**).
26+
| Tweets and toots are displayed with the user account associated to the API keys (feeds may contain items with **restricted visibility**).

docs/_sources/index.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Welcome to twootfeed's documentation!
77
=====================================
88

9-
**twootfeed** generate a rss feed from parsed Twitter or Mastodon search and from Mastodon bookmarks and favorites
9+
**twootfeed** generate a rss feed from parsed Twitter or Mastodon search and from Mastodon bookmarks, favorites and home timeline.
1010

1111
.. toctree::
1212
:maxdepth: 1

docs/_sources/parameters.rst.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ Application parameters are stored in ``config.yml`` file:
2121
feed:
2222
language: 'fr'
2323
author_name: ''
24-
feed_url: 'http://localhost:5000/'
24+
feed_url: 'http://localhost:8080'
2525
timezone: 'Europe/Paris'
2626
text_length_limit: 100
2727
max_items: 20
2828
token: ''
2929
app:
30-
host: '0.0.0.0'
30+
host: 'localhost'
3131
port: '8080'
32-
# nb_workers: 4 # if not defined, the number is defined by the app
32+
nb_workers: 2 # if not defined, the number is defined by the app
3333
3434
3535
Twitter
@@ -60,4 +60,4 @@ Feed
6060
App
6161
~~~
6262
* **host** and **port**: host and port used by Gunicorn (WSGI HTTP Server)
63-
* **nb_workers**: number of workers used by Gunicorn (not mandatory, if not defined, the number is defined by the app)
63+
* **nb_workers**: number of workers used by Gunicorn (not mandatory, if not defined, the number is calculated by the app)

docs/_static/documentation_options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var DOCUMENTATION_OPTIONS = {
22
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
3-
VERSION: '0.6.8',
3+
VERSION: '0.7.0',
44
LANGUAGE: 'en',
55
COLLAPSE_INDEX: false,
66
BUILDER: 'html',

0 commit comments

Comments
 (0)