Skip to content

Commit

Permalink
Merge branch 'release/0.9.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
chabErch committed Jun 12, 2021
2 parents 2f7c743 + 836a823 commit 94f035a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'chaberch'

# The full version, including alpha/beta/rc tags
release = '0.9.3'
release = '0.9.4'

# -- General configuration ---------------------------------------------------

Expand Down
4 changes: 4 additions & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ Author
- `Chaberch <https://github.com/chabErch>`_


****************
Table of content
****************

.. toctree::
:maxdepth: 1
:caption: Usage
Expand Down
2 changes: 1 addition & 1 deletion linum/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from .txt_renderer.console_renderer import ConsoleRenderer
from .txt_renderer.txt_renderer import TxtRenderer

__version__ = '0.9.3'
__version__ = '0.9.4'
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
with open(path.join(here, "README.md")) as f:
long_description = f.read()

with open(path.join(here, "requirements.txt")) as f:
requirements = f.readlines()

setup(
name='Linum',
version=linum.__version__,
Expand Down Expand Up @@ -42,5 +45,6 @@
'console_scripts': [
'linum = linum.cli:cli',
],
}
},
install_requires=requirements,
)

0 comments on commit 94f035a

Please sign in to comment.