Skip to content

Commit 3b1c4f8

Browse files
Version 3.11.0 (#545)
1 parent ca49272 commit 3b1c4f8

File tree

6 files changed

+43
-4
lines changed

6 files changed

+43
-4
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## moler 3.11.0
2+
* New Unix commands (bzip2, 7z)
3+
* uptime - new parser
4+
* Log info for state observer
5+
* Number converters can return None instead raise an exception
6+
* New locking commands for AT devices
7+
* Change at command to accept in apt name
8+
19
## moler 3.10.0
210
* Wait4prompts - reverse order of processing lines
311
* More readable info when more than 1 prompt match the same line
@@ -9,7 +17,6 @@
917
* Optional sleep after state change
1018
* Change the way the date is parsed (time zone)
1119

12-
1320
## moler 3.8.0
1421
* More info when SshShell is disconnected
1522
* Fix prompt detection for ProxyPc2

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![image](https://img.shields.io/badge/pypi-v3.10.0-blue.svg)](https://pypi.org/project/moler/)
1+
[![image](https://img.shields.io/badge/pypi-v3.11.0-blue.svg)](https://pypi.org/project/moler/)
22
[![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/)
33
[![Build Status](https://github.com/nokia/moler/actions/workflows/ci.yaml/badge.svg?branch=main)](https://github.com/nokia/moler/actions)
44
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](./LICENSE)

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
author = 'Nokia'
2525

2626
# The short X.Y version
27-
version = '3.10.0'
27+
version = '3.11.0'
2828
# The full version, including alpha/beta/rc tags
2929
release = 'stable'
3030

docs/source/moler.cmd.at.rst

+8
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,14 @@ moler.cmd.at.get\_revision\_id module
172172
:undoc-members:
173173
:show-inheritance:
174174

175+
moler.cmd.at.gt\_cell\_lock module
176+
----------------------------------
177+
178+
.. automodule:: moler.cmd.at.gt_cell_lock
179+
:members:
180+
:undoc-members:
181+
:show-inheritance:
182+
175183
moler.cmd.at.plink\_serial module
176184
---------------------------------
177185

docs/source/moler.cmd.unix.rst

+24
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ moler.cmd.unix.bash module
3636
:undoc-members:
3737
:show-inheritance:
3838

39+
moler.cmd.unix.bzip2 module
40+
---------------------------
41+
42+
.. automodule:: moler.cmd.unix.bzip2
43+
:members:
44+
:undoc-members:
45+
:show-inheritance:
46+
3947
moler.cmd.unix.cat module
4048
-------------------------
4149

@@ -652,6 +660,14 @@ moler.cmd.unix.service module
652660
:undoc-members:
653661
:show-inheritance:
654662

663+
moler.cmd.unix.seven\_z module
664+
------------------------------
665+
666+
.. automodule:: moler.cmd.unix.seven_z
667+
:members:
668+
:undoc-members:
669+
:show-inheritance:
670+
655671
moler.cmd.unix.sftp module
656672
--------------------------
657673

@@ -828,6 +844,14 @@ moler.cmd.unix.uname module
828844
:undoc-members:
829845
:show-inheritance:
830846

847+
moler.cmd.unix.unrar module
848+
---------------------------
849+
850+
.. automodule:: moler.cmd.unix.unrar
851+
:members:
852+
:undoc-members:
853+
:show-inheritance:
854+
831855
moler.cmd.unix.unxz module
832856
--------------------------
833857

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name='moler',
15-
version='3.10.0',
15+
version='3.11.0',
1616
description='Moler is a library for working with terminals, mainly for automated tests', # Required
1717
long_description=long_description,
1818
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)