Skip to content

Commit

Permalink
version 0.10
Browse files Browse the repository at this point in the history
merged all enhancements made in the last 3 years.

todo next: fix unit tests, fix possible bugs after merging
  • Loading branch information
babca committed Aug 19, 2016
1 parent 99a416f commit eaa2c61
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 4 deletions.
12 changes: 12 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,16 @@ the01 <https://github.com/the01>
Frederico Rosmaninho
David Beitey <https://github.com/davidjb>
BOOMER74 <https://github.com/BOOMER74>
Cyril-Roques <https://github.com/Cyril-Roques>
PeteLawler <https://github.com/PeteLawler>
alex-eri <https://github.com/alex-eri>
tomchy <https://github.com/tomchy>
bennyslbs <https://github.com/bennyslbs>
epol <https://github.com/epol>
rags22489664 <https://github.com/rags22489664>
fataevalex <https://github.com/fataevalex>
paolo-losi <https://github.com/paolo-losi>
yuriykashin <https://github.com/yuriykashin>
foXes68 <https://github.com/foXes68>
babca <https://github.com/babca>

16 changes: 16 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> - 0.9
- Added UDH support for SMS PDUs
- Stored messages APIs made public
Expand Down
5 changes: 3 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ Bundled utilities:
Requirements
------------

- Python 2.6 or later
- Python 2.7 or later
- Python 3.3 or later
- pyserial


Expand Down Expand Up @@ -100,7 +101,7 @@ Building documentation
This package contains `Sphinx <http://sphinx-doc.org>`_-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
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pyserial>=2.6
pyserial>=3.1.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 """
Expand Down

0 comments on commit eaa2c61

Please sign in to comment.