diff --git a/CHANGELOG.md b/CHANGELOG.md index 99e217637..0b1d779f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## moler 1.3.1 + +### Added +* option to disable log every occurrence for events +* backward compatibility for load_device_from_config + +### Fixed +* correct device remove functionality functionality + + ## moler 1.3.0 ### Added diff --git a/README.md b/README.md index ce7533267..80a83736b 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,10 @@ 3. [API design reasoning](#api-design-reasoning) 4. [Designed API](#designed-api) +# Changelog +View our [chronological list](https://github.com/nokia/moler/blob/master/CHANGELOG.md) of user-facing changes, large and small, made to the Moler project. + + # Moler Moler ([name origin](https://github.com/nokia/moler/wiki#moler-name-origin)) is Python library that provides "bricks" for building automated tests. diff --git a/docs/source/conf.py b/docs/source/conf.py index 993f3d7c3..1b2fdb634 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -24,7 +24,7 @@ author = 'Nokia' # The short X.Y version -version = '1.3.0' +version = '1.3.1' # The full version, including alpha/beta/rc tags release = 'stable' diff --git a/setup.py b/setup.py index 63661fe66..90e02f516 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name='moler', # Required - version='1.3.0', # Required + version='1.3.1', # Required description='Moler is library to help in building automated tests', # Required long_description=long_description, # Optional long_description_content_type='text/markdown', # Optional (see note above)