Skip to content

Commit

Permalink
chg: dev: Bumping version number to 1.9.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
carlos-jenkins committed Aug 12, 2019
1 parent edde232 commit 13875f2
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"project_name": "Flowbber",
"short_description": "Flowbber is a generic tool and framework that allows to execute custom pipelines for data gathering, publishing and analysis.",
"year": "2017-2019",
"version": "1.8.0"
"version": "1.9.0"
}
63 changes: 63 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,69 @@ Install
Changelog
=========

1.9.0 (2019-08-12)
------------------

New
~~~

- Add option to Mongo sink to allow key overwrite.

This allows a pipeline to override an entry in the database using the same
key.

.. code-block:: toml
[sinks.config]
overwrite = true
- Add type parsing in env source.

A type can be specified for each environment variable, so that it is parsed
and collected with the expected datatype. Types available are:

:integer: Using Python's ``int()`` function.
:float: Using Python's ``float()`` function.
:string: Using Python's ``str()`` function.
:auto: Using Flowbber's ``flowbber.utils.types.autocast``.
:boolean: Using Flowbber's ``flowbber.utils.types.booleanize``.
:iso8601: Using Flowbber's ``flowbber.utils.iso8601.iso8601_to_datetime``.

Usage:

.. code-block:: toml
[sources.config]
include = [
"TESTENV_INT",
]
[sources.config.types]
TESTENV_INT = "integer"
- Pipelines can now be defined in YAML format.

For example:

.. code-block:: yaml
sources:
- type: timestamp
id: timestamp
config:
epochf: true
iso8601: true
strftime: '%Y-%m-%d %H:%M:%S'
Fixes
~~~~~

- Use which genhtml to find executable on lcov_html sink.

This fixes an issue where the executable could not be found if a custom
``PATH`` was used.


1.8.0 (2019-07-12)
------------------

Expand Down
2 changes: 1 addition & 1 deletion lib/flowbber/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

__author__ = 'KuraLabs S.R.L'
__email__ = 'info@kuralabs.io'
__version__ = '1.8.0'
__version__ = '1.9.0'

0 comments on commit 13875f2

Please sign in to comment.