Skip to content

Commit

Permalink
Version 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcin-usielski committed Jan 18, 2024
1 parent 1360d46 commit 0855086
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 23 deletions.
39 changes: 22 additions & 17 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## moler 3.0.0
* Common way to fail commands based on their output
* Start command(s) when event(s) finished - start_command_after_event
* Changed deprecated test code

## moler 2.17.1
* Fix for compare objects under Python 2.7

Expand All @@ -8,7 +13,7 @@
## moler 2.16.0
* Tests on Python 3.12
* Warning for Pythons 2.7 -3.6 (support will be removed soon)
* Prompt detection for overloaded systems
* Prompt detection for overloaded systems

## moler 2.15.0
* ConnectionObserver objects store full exception stack for Python3.5+
Expand Down Expand Up @@ -65,13 +70,13 @@
### Improved

* Command run_script for AT
* Improved tests for state machines - continued
* Improved tests for state machines - continued

## moler 2.5.0

### Improved

* Improved tests of state machines - continued
* Improved tests of state machines - continued

## moler 2.4.0

Expand Down Expand Up @@ -104,22 +109,22 @@
### Improved

* Improvement state NOT_CONNECTED in device SM.
* SM can enter state if prompt regex matches a line without anchors.
* SM can enter state if prompt regex matches a line without anchors.

## moler 2.1.0

### Improved

* Optional compress logs after rotation.
* Log stack for set_exception in ConnectionObserver.
* Caller stack info for MolerTest.error.
* Caller stack info for MolerTest.error.

## moler 2.0.0

### Improved

* Change default runner and connection type (less threads).
* Improve removing escape character from unix output
* Improve removing escape character from unix output

## moler 1.33.0

Expand All @@ -132,7 +137,7 @@
## moler 1.32.2

### Improved
* Proper handled timeout in wait_for of RunnerSingleThread
* Proper handled timeout in wait_for of RunnerSingleThread

## moler 1.32.1

Expand Down Expand Up @@ -211,19 +216,19 @@
### Improved
* Logging suffix
* Terminal investigation

## moler 1.26.0

### Added
* New output for iptables and add rest in ret
* nft command

### Improved
### Improved
* Modify cu command

## moler 1.25.1

### Improved
### Improved
* Don't tail full file for first file

## moler 1.25.0
Expand All @@ -233,22 +238,22 @@
* Create cu.py
* tail_latest_file

### Improved
### Improved
* Change ATI cmd name to GetProductInfo
* Log exception from runner
* Modify regex in get_apns.py

## moler 1.24.0

### Improved
### Improved
* nmap
* Remove hardcore
* Command traceroute
* Scp - new format of question

## moler 1.23.0

### Improved
### Improved
* Openssl cmd
* Unix lxc* commands

Expand All @@ -268,11 +273,11 @@

## moler 1.20.0

### Improved
* Load events only if they are not loaded
* Unxz
### Improved
* Load events only if they are not loaded
* Unxz
* Fix packages for UnixLocal in examples
* Commands may break on regex
* Commands may break on regex

## moler 1.19.0

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
author = 'Nokia'

# The short X.Y version
version = '2.17.1'
version = '3.0.0'
# The full version, including alpha/beta/rc tags
release = 'stable'

Expand Down
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name='moler', # Required
version='2.17.1', # Required
version='3.0.0', # Required
description='Moler is a library for working with terminals, mainly for automated tests', # Required
long_description=long_description, # Optional
long_description_content_type='text/markdown', # Optional (see note above)
Expand All @@ -35,10 +35,7 @@
'Operating System :: POSIX',
'Operating System :: Unix',

'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand Down Expand Up @@ -79,4 +76,3 @@
'Source': 'https://github.com/nokia/moler',
},
)

0 comments on commit 0855086

Please sign in to comment.