Skip to content

Commit

Permalink
docs updated to 0.3.5 version
Browse files Browse the repository at this point in the history
  • Loading branch information
Luciano Antonio Costa committed Oct 23, 2018
1 parent c8c4f47 commit 451288b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 23 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.rst
@@ -1,10 +1,14 @@
Change Log
----------

0.3.5 released <in development>
0.3.5 released 2018-10-23
============================

- ?
- Added explicit license
- Reorganizing project structure
- Fix exception handling in sockets
- Fix exception in terminate command (wc3270)
- Code styling and minor fixes

0.3.4 released 2017-07-24
============================
Expand Down Expand Up @@ -36,7 +40,7 @@ Change Log
0.2.0 released 2014-03-28
=========================

- Add Windows support, but not tested thoroughly. Consider Windows support Experimental.
- Add Windows support, but not tested thoroughly.Consider Windows supportExperimental.
- use x3270 executables from PATH instead of requiring ExamBase to be subclassed
- fix buffering problems when writing to x3270 subprocess

Expand Down
29 changes: 9 additions & 20 deletions README.rst
@@ -1,11 +1,12 @@

|license| |pypi| |coverage| |bugs| |code smells| |vulnerabilities| |duplicated lines|
|license| |pypi| |coverage| |bugs| |code smells| |vulnerabilities|
|duplicated lines|

Intro
-----

py3270 is a Python interface to x3270, an IBM 3270 terminal emulator. It
provides an API to a x3270 or s3270 subprocess.
py3270 is a Python interface to x3270, an IBM 3270 terminal emulator.
It provides an API to a x3270 or s3270 subprocess.

Example
--------
Expand Down Expand Up @@ -44,7 +45,7 @@ A brief example of usage:
Documentation
--------------

None, sorry. Read the code, its pretty simple & self-explanatory :)
None, sorry. Read the code, its pretty simple & self-explanatory :)

More information on x3270/s3270 can be found at:

Expand All @@ -53,22 +54,10 @@ More information on x3270/s3270 can be found at:
* http://x3270.bgp.nu/s3270-man.html
* http://x3270.bgp.nu/x3270-script.html

Upgrading from 0.1.x to 0.2.0
-----------------------------

There are some backwards incompatable changes from 0.1.5 to 0.2.0. Namely:

* x3270 executables now need to be on the PATH
* Don't use x3270.EmulatorBase, use x3270.Emulator instead. Its the same API exect that you no
longer need to specify the paths to the x3270 executables.
* the underlying Command object and some internal APIs have changed. If you were digging into the
Emulator instance to change things, you may have problems. See the source, the changes weren't
major and shouldn't be too hard to fix.

Questions & Comments
---------------------

Please visit: http://groups.google.com/group/blazelibs
Please submit a issue or visit: http://groups.google.com/group/blazelibs

Current Status
---------------
Expand All @@ -78,8 +67,8 @@ There are more x3270 commands that the Emulator could have methods for. That
being said, I believe most x3270 functionality can be supported at a lower-level
by the use of Emulator.exec_command().

py3270 is installable via `pip` with ``pip install py3270`` or `easy_install` with
``easy_install py3270``.
py3270 is installable via `pip` with ``pip install py3270`` or `easy_install`
with ``easy_install py3270``.

.. |license| image:: https://img.shields.io/badge/License-BSD%203--Clause-blue.svg
:target: https://opensource.org/licenses/BSD-3-Clause
Expand All @@ -103,7 +92,7 @@ py3270 is installable via `pip` with ``pip install py3270`` or `easy_install` wi

.. |vulnerabilities| image:: https://sonarcloud.io/api/project_badges/measure?project=py3270&metric=vulnerabilities
:target: https://sonarcloud.io/component_measures?id=py3270&metric=vulnerabilities
:alt: Vulnerabilities
:alt: Vulnerabilities

.. |duplicated lines| image:: https://sonarcloud.io/api/project_badges/measure?project=py3270&metric=duplicated_lines_density
:target: https://sonarcloud.io/component_measures?id=py3270&metric=duplicated_lines_density
Expand Down

0 comments on commit 451288b

Please sign in to comment.