From eaa2c61a5f9c7dcb5bb111211d82849e6232dfc1 Mon Sep 17 00:00:00 2001 From: babca Date: Fri, 19 Aug 2016 16:57:01 +0200 Subject: [PATCH] version 0.10 merged all enhancements made in the last 3 years. todo next: fix unit tests, fix possible bugs after merging --- AUTHORS | 12 ++++++++++++ ChangeLog | 16 ++++++++++++++++ README.rst | 5 +++-- requirements.txt | 2 +- setup.py | 2 +- 5 files changed, 33 insertions(+), 4 deletions(-) diff --git a/AUTHORS b/AUTHORS index ec8a6f3..09a3e3f 100644 --- a/AUTHORS +++ b/AUTHORS @@ -8,4 +8,16 @@ the01 Frederico Rosmaninho David Beitey BOOMER74 +Cyril-Roques +PeteLawler +alex-eri +tomchy +bennyslbs +epol +rags22489664 +fataevalex +paolo-losi +yuriykashin +foXes68 +babca diff --git a/ChangeLog b/ChangeLog index 56cd87c..17fd9c0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,19 @@ +* Thu Aug 18 2016 babca - 0.10 +– Probably a new code maintainer for 2016 +- All commits published for the last 3 years merged into a one branch +– Compatibilty for python3 added, needs further testing! +– experimental GPRS support +– more: + – change AT_CNMI command if needed + – waitingForModemToStartInSeconds + – timeouts increased + – ability to check SMS encodings supported by modem - smsSupportedEncoding() + – better modem specific support (incl. simcom) + – TE SMS status reports handling support + – option to disable requesting delivery reports + – incoming DTMF support +– todo: check AT+CMGD support for 1 or 2 params and use appropriate command format + * Thu Jul 18 2013 Francois Aucamp - 0.9 - Added UDH support for SMS PDUs - Stored messages APIs made public diff --git a/README.rst b/README.rst index 054ef08..a22cee3 100644 --- a/README.rst +++ b/README.rst @@ -31,7 +31,8 @@ Bundled utilities: Requirements ------------ -- Python 2.6 or later +- Python 2.7 or later +- Python 3.3 or later - pyserial @@ -100,7 +101,7 @@ Building documentation This package contains `Sphinx `_-based documentation. To manually build or test the documentation locally, do the following:: - git clone https://github.com/faucamp/python-gsmmodem.git + git clone https://github.com/babca/python-gsmmodem.git cd python-gsmmodem pip install .[doc] cd doc diff --git a/requirements.txt b/requirements.txt index f59baab..8b2635b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -pyserial>=2.6 \ No newline at end of file +pyserial>=3.1.1 \ No newline at end of file diff --git a/setup.py b/setup.py index e7ef2ed..13a1c7b 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ test_command = [sys.executable, '-m', 'unittest', 'discover'] coverage_command = ['coverage', 'run', '-m', 'unittest', 'discover'] -VERSION = 0.9 +VERSION = 0.10 class RunUnitTests(Command): """ run unit tests """