diff --git a/CHANGELOG.md b/CHANGELOG.md index a106d6e4c..46185b32e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## moler 3.10.0 + * Wait4prompts - reverse order of processing lines + * More readable info when more than 1 prompt match the same line + * CommandChangingPrompt - refactoring + ## moler 3.9.0 * Change the way of validating if Ctrl+Z has worked and stopped the command * Keygen file is taken from ssh output diff --git a/README.md b/README.md index 2c60da954..1f4175800 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![image](https://img.shields.io/badge/pypi-v3.9.0-blue.svg)](https://pypi.org/project/moler/) +[![image](https://img.shields.io/badge/pypi-v3.10.0-blue.svg)](https://pypi.org/project/moler/) [![image](https://img.shields.io/badge/python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue.svg)](https://pypi.org/project/moler/) [![Build Status](https://github.com/nokia/moler/actions/workflows/ci.yaml/badge.svg?branch=main)](https://github.com/nokia/moler/actions) [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](./LICENSE) diff --git a/docs/source/conf.py b/docs/source/conf.py index 9d2cd6446..74d5960a4 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -24,7 +24,7 @@ author = 'Nokia' # The short X.Y version -version = '3.9.0' +version = '3.10.0' # The full version, including alpha/beta/rc tags release = 'stable' diff --git a/setup.py b/setup.py index ed1aa358e..67551d0da 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='moler', - version='3.9.0', + version='3.10.0', description='Moler is a library for working with terminals, mainly for automated tests', # Required long_description=long_description, long_description_content_type='text/markdown',