Skip to content

Commit

Permalink
Merge pull request #391 from piraz/develop
Browse files Browse the repository at this point in the history
Delivered 0.2.15.
  • Loading branch information
piraz committed Jan 30, 2022
2 parents 5630d4e + 838ee7f commit d8ac63b
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 11 deletions.
10 changes: 3 additions & 7 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,15 @@
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = ["myst_parser"]
extensions = []

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
# source_suffix = ['.rst', '.md']
source_suffix = {
'.rst': 'restructuredtext',
'.txt': 'markdown',
'.md': 'markdown',
}
source_suffix = ['.rst', '.md']

# The encoding of source files.
#source_encoding = 'utf-8-sig'
Expand All @@ -61,7 +57,7 @@
# The short X.Y version.
version = '0.2'
# The full version, including alpha/beta/rc tags.
release = '0.2.14'
release = '0.2.15'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/services.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ classes are ``firenado.tornadoweb.TornadoHandler`` and any descendent of

Creating a service and decorating a handler:

.. code-block::python
.. code-block:: python
from firenado import service, tornadoweb
# Importing a package with some services
Expand Down
1 change: 1 addition & 0 deletions docs/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Release notes
.. toctree::
:maxdepth: 2

releases/v0.2.15
releases/v0.2.14
releases/v0.2.13
releases/v0.2.12
Expand Down
23 changes: 23 additions & 0 deletions docs/releases/v0.2.15.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
What's new in Firenado 0.2.15
=============================

Jan 30, 2022
------------

We are pleased to announce the release of Firenado 0.2.15.

At this release we added a service decorator to help handle sqlalchemy
sessions.

Here are the highlights:

Bug Fixes
~~~~~~~~~

* Change dashed parameters to underscored ones in setup.cfg. `#385 <https://github.com/candango/firenado/issues/385>`_

Features
~~~~~~~~

* Create a decorator to handle shared sqlalchemy sessions between mehtods. `#377 <https://github.com/candango/firenado/issues/377>`_
* Add shortcut properties to help get components from the scheduler and scheduled job. `#387 <https://github.com/candango/firenado/issues/387>`_
8 changes: 5 additions & 3 deletions firenado/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: UTF-8 -*-
#
# Copyright 2015-2022 Flavio Garcia
# Copyright 2015-2022 Flávio Gonçalves Garcia
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -17,12 +17,14 @@

"""The Firenado Framework"""

__author__ = "Flavio Garcia <piraz@candango.org>"
__version__ = (0, 2, 14)
__author__ = "Flávio Gonçalves Garcia <piraz at candango.org>"
__version__ = (0, 2, 15)
__licence__ = "Apache License V2.0"


def get_version():
if isinstance(__version__[-1], str):
return '.'.join(map(str, __version__[:-1])) + __version__[-1]
return ".".join(map(str, __version__))


Expand Down

0 comments on commit d8ac63b

Please sign in to comment.