Skip to content

Commit 6f3589a

Browse files
committed
create release 1.0.10
Features: * automatically set pin modes for UART (PR #158) * Encoder: README.md: added note about eqep group change (PR #214) * deprecate out of date Adafruit_I2C.py (PR #215) * Add Encoder module info to main README.md (PR #217) * Add automatic API documentation generation (PR #219) * Separate API docs into modules (PR #221) shortlog: * David Planella (46): * Encoder: README.md: added note about eqep group change * Add Encoder module info to main README.md * Added docstrings using Google syntax and Sphinx support to generate the API documentation for the Encoder and PWM modules for now. * Made kernel version check to happen only if running on a beaglebone. The readthedocs builders that import the Encoder module have an old 3.3 kernel and the autodoc build fails * Use the default readthedocs theme * Use readthedocs theme if building docs there, remove redundand search link * Readthedocs theme tweaks * Removed redundant TOC, added global description * Added UART documentation * Added documentation badge * Added ADC API docs, fixed UART module definition * API docs: added SPI module * Added SPI module attribute docs * Added Python badges to README file * Added SPI pins table and first shot at GPIO module. Functions still need to be documented * Merge branch 'readthedocs' of https://github.com/dplanella/adafruit-beaglebone-io-python into readthedocs * Documented the API docs build process * Added docstrings using Google syntax and Sphinx support to generate the API documentation for the Encoder and PWM modules for now. * Made kernel version check to happen only if running on a beaglebone. The readthedocs builders that import the Encoder module have an old 3.3 kernel and the autodoc build fails * Use the default readthedocs theme * Use readthedocs theme if building docs there, remove redundand search link * Readthedocs theme tweaks * Removed redundant TOC, added global description * Added UART documentation * Added documentation badge * Added ADC API docs, fixed UART module definition * API docs: added SPI module * Added SPI module attribute docs * Added Python badges to README file * Added SPI pins table and first shot at GPIO module. Functions still need to be documented * Documented the API docs build process * Merge branch 'readthedocs' of https://github.com/dplanella/adafruit-beaglebone-io-python into readthedocs * Update README.md * Added some more API doc content * Sync from upstream master * Minor documentation and configuration improvements * Finished documenting GPIO * rST fixes * Update README.md * Minor API doc improvements * Merge branch 'readthedocs' of https://github.com/dplanella/adafruit-beaglebone-io-python into readthedocs * Generate the API documentation from a master index and a separate file for each module * Sync from upstream master * Improvements to the API docs output config * Update docs generation description to reflect new separate modules * Updated ADC API docs * Drew Fustini (10): * use set_pin_mode() to set uart pinmux (#158) * Add SPI instructions to README (#158) * Update README.md * Fix spidev path mismatch (#216) * Merge pull request #217 from dplanella/patch-2 * Merge pull request #214 from dplanella/patch-1 * Deprecate Adafruit_BBIO.I2C in favor of Adafruit_GPIO.I2C (#215) * Merge pull request #219 from dplanella/readthedocs * relocate doc dir to avoid confusion (#218) * Merge pull request #221 from dplanella/readthedocs Signed-off-by: Drew Fustini <[email protected]>
1 parent fe57d1f commit 6f3589a

File tree

2 files changed

+73
-1
lines changed

2 files changed

+73
-1
lines changed

CHANGELOG.md

+72
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,75 @@
1+
1.0.10
2+
----
3+
**features**
4+
* automatically set pin modes for UART (PR #158)
5+
* Encoder: README.md: added note about eqep group change (PR #214)
6+
* deprecate out of date Adafruit_I2C.py (PR #215)
7+
* Add Encoder module info to main README.md (PR #217)
8+
* Add automatic API documentation generation (PR #219)
9+
* Separate API docs into modules (PR #221)
10+
11+
**shortlog**
12+
* David Planella (46):
13+
* Encoder: README.md: added note about eqep group change
14+
* Add Encoder module info to main README.md
15+
* Added docstrings using Google syntax and Sphinx support to generate the API documentation for the Encoder and PWM modules for now.
16+
* Made kernel version check to happen only if running on a beaglebone. The readthedocs builders that import the Encoder module have an old 3.3 kernel and the autodoc build fails
17+
* Use the default readthedocs theme
18+
* Use readthedocs theme if building docs there, remove redundand search link
19+
* Readthedocs theme tweaks
20+
* Removed redundant TOC, added global description
21+
* Added UART documentation
22+
* Added documentation badge
23+
* Added ADC API docs, fixed UART module definition
24+
* API docs: added SPI module
25+
* Added SPI module attribute docs
26+
* Added Python badges to README file
27+
* Added SPI pins table and first shot at GPIO module. Functions still need to be documented
28+
* Merge branch 'readthedocs' of https://github.com/dplanella/adafruit-beaglebone-io-python into readthedocs
29+
* Documented the API docs build process
30+
* Added docstrings using Google syntax and Sphinx support to generate the API documentation for the Encoder and PWM modules for now.
31+
* Made kernel version check to happen only if running on a beaglebone. The readthedocs builders that import the Encoder module have an old 3.3 kernel and the autodoc build fails
32+
* Use the default readthedocs theme
33+
* Use readthedocs theme if building docs there, remove redundand search link
34+
* Readthedocs theme tweaks
35+
* Removed redundant TOC, added global description
36+
* Added UART documentation
37+
* Added documentation badge
38+
* Added ADC API docs, fixed UART module definition
39+
* API docs: added SPI module
40+
* Added SPI module attribute docs
41+
* Added Python badges to README file
42+
* Added SPI pins table and first shot at GPIO module. Functions still need to be documented
43+
* Documented the API docs build process
44+
* Merge branch 'readthedocs' of https://github.com/dplanella/adafruit-beaglebone-io-python into readthedocs
45+
* Update README.md
46+
* Added some more API doc content
47+
* Sync from upstream master
48+
* Minor documentation and configuration improvements
49+
* Finished documenting GPIO
50+
* rST fixes
51+
* Update README.md
52+
* Minor API doc improvements
53+
* Merge branch 'readthedocs' of https://github.com/dplanella/adafruit-beaglebone-io-python into readthedocs
54+
* Generate the API documentation from a master index and a separate file for each module
55+
* Sync from upstream master
56+
* Improvements to the API docs output config
57+
* Update docs generation description to reflect new separate modules
58+
* Updated ADC API docs
59+
60+
* Drew Fustini (10):
61+
* use set_pin_mode() to set uart pinmux (#158)
62+
* Add SPI instructions to README (#158)
63+
* Update README.md
64+
* Fix spidev path mismatch (#216)
65+
* Merge pull request #217 from dplanella/patch-2
66+
* Merge pull request #214 from dplanella/patch-1
67+
* Deprecate Adafruit_BBIO.I2C in favor of Adafruit_GPIO.I2C (#215)
68+
* Merge pull request #219 from dplanella/readthedocs
69+
* relocate doc dir to avoid confusion (#218)
70+
* Merge pull request #221 from dplanella/readthedocs
71+
72+
173
1.0.9
274
----
375
**Features:**

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
}
4141

4242
setup(name = 'Adafruit_BBIO',
43-
version = '1.0.9',
43+
version = '1.0.10',
4444
author = 'Justin Cooper',
4545
author_email = '[email protected]',
4646
description = 'A module to control BeagleBone IO channels',

0 commit comments

Comments
 (0)