Skip to content

Commit

Permalink
release: Bump version 0.0.0 -> 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
attakei committed May 28, 2023
1 parent 44f4014 commit 247f636
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
Change logs
===========

v0.0.0
v0.1.0
======

:date: 2023-05-01
:date: 2023-05-29 JST

Initial commit.

* Collect articles included ``og-article`` directive and generate feed file.
31 changes: 30 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,38 @@ atsphinx-feed

Simple RSS feed generator based Open Graph.

Oviewview
=========

Sphinx extension to add RSS feed of documents.

This is using ``atsphin-og-article``, and pick documents included ``og-article`` directive.
You can select only documents that you want to notify as RSS.

Getting started
===============

.. code: console
Install from PyPI.

.. code:: console
pip install atsphinx-feed
Configure your ``conf.py``.

.. code:: python
extensions = [
"atsphinx.feed",
"atsphinx.og_article",
]
When you build by html-like builder, this generates Atom style feed file into outdir.

_build/html/
index.html
_static/
atom.xml <- Generated!!

You can configure behevior of extension.
Please see docs.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.0
current_version = 0.1.0
commit = True
tag = False
message = release: Bump version {current_version} -> {new_version}
Expand Down
2 changes: 1 addition & 1 deletion src/atsphinx/feed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from . import processors

__version__ = "0.0.0"
__version__ = "0.1.0"


def validate_config(app: Sphinx, config: Config):
Expand Down

0 comments on commit 247f636

Please sign in to comment.