Skip to content

Commit

Permalink
Add packaging files for v0.0.22 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sparkslabs committed Sep 25, 2016
1 parent 8fc1f80 commit 8bc553b
Show file tree
Hide file tree
Showing 8 changed files with 54 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ reason.

### In progress

## [0.0.22] - UNRELEASED
## [0.0.22] - 2016-09-25

This release sees a practicality change - specifically to allow the user
to specify which arduino board they want their code compiled for. The way
Expand Down
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,8 @@ Release History

Release History:

- 0.0.22 - UNRELEASED - TBD
- 0.0.22 - 2016-09-25 - Enable ability to use a variety of Arduino
boards by using an Makefile.in file
- 0.0.21 - 2016-09-17 - Adds ability to control Arduino servo objects.
Quite a lot of internal changes to support that
- 0.0.20 - 2016-08-12 - Mainly internal changes. Adds WIPNOTES, updates
Expand Down
26 changes: 23 additions & 3 deletions doc/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,35 @@ reason.

### In progress

## [0.0.22] - UNRELEASED
## [0.0.22] - 2016-09-25

This release sees a practicality change - specifically to allow the user
to specify which arduino board they want their code compiled for. The way
this works is to override the arduino-mk process.

As a result, in order to compile (say) examples/servo/servo-test-target.pyxie
for the arduino Uno, you change the file examples/servo/servo-test-target.Makefile.in
to contain the following:

BOARD_TAG = uno
ARDUINO_PORT = /dev/ttyACM0

This generates the appropriate file. If you had a Dagi Mini, you might change
the contents to this:

BOARD_TAG = atmega8
ARDUINO_PORT = /dev/ttyACM0

Full documentation will come later but this should be sufficient to get started
with.

### New

*
* Ability to override which arduino board you're working with.

### Other

*
* Minor cleanups

## [0.0.21] - 2016-09-17

Expand Down
2 changes: 1 addition & 1 deletion doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ inspired heavily by python introspection) That's quite some time off.

Release History:

* 0.0.22 - UNRELEASED - TBD
* 0.0.22 - 2016-09-25 - Enable ability to use a variety of Arduino boards by using an Makefile.in file
* 0.0.21 - 2016-09-17 - Adds ability to control Arduino servo objects. Quite a lot of internal changes to support that
* 0.0.20 - 2016-08-12 - Mainly internal changes. Adds WIPNOTES, updates arduino examples
* 0.0.19 - 2016-01-31 - Continued work on arduino profile and initial Python3 support
Expand Down
2 changes: 1 addition & 1 deletion pyxie/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@
Release History:
* 0.0.22 - UNRELEASED - TBD
* 0.0.22 - 2016-09-25 - Enable ability to use a variety of Arduino boards by using an Makefile.in file
* 0.0.21 - 2016-09-17 - Adds ability to control Arduino servo objects. Quite a lot of internal changes to support that
* 0.0.20 - 2016-08-12 - Mainly internal changes. Adds WIPNOTES, updates arduino examples
* 0.0.19 - 2016-01-31 - Continued work on arduino profile and initial Python3 support
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,8 @@ def find_packages(path, base="" ):
Release History:
- 0.0.22 - UNRELEASED - TBD
- 0.0.22 - 2016-09-25 - Enable ability to use a variety of Arduino
boards by using an Makefile.in file
- 0.0.21 - 2016-09-17 - Adds ability to control Arduino servo objects.
Quite a lot of internal changes to support that
- 0.0.20 - 2016-08-12 - Mainly internal changes. Adds WIPNOTES, updates
Expand Down
26 changes: 23 additions & 3 deletions site/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,35 @@ reason.

### In progress

## [0.0.22] - UNRELEASED
## [0.0.22] - 2016-09-25

This release sees a practicality change - specifically to allow the user
to specify which arduino board they want their code compiled for. The way
this works is to override the arduino-mk process.

As a result, in order to compile (say) examples/servo/servo-test-target.pyxie
for the arduino Uno, you change the file examples/servo/servo-test-target.Makefile.in
to contain the following:

BOARD_TAG = uno
ARDUINO_PORT = /dev/ttyACM0

This generates the appropriate file. If you had a Dagi Mini, you might change
the contents to this:

BOARD_TAG = atmega8
ARDUINO_PORT = /dev/ttyACM0

Full documentation will come later but this should be sufficient to get started
with.

### New

*
* Ability to override which arduino board you're working with.

### Other

*
* Minor cleanups

## [0.0.21] - 2016-09-17

Expand Down
2 changes: 1 addition & 1 deletion site/src/panels/shortlog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Shortlog
updated: August 2016
title: Shortlog
---
* 0.0.22 - UNRELEASED - TBD
* 0.0.22 - 2016-09-25 - Enable ability to use a variety of Arduino boards by using an Makefile.in file
* 0.0.21 - 2016-09-17 - Adds ability to control Arduino servo objects. Quite a lot of internal changes to support that
* 0.0.20 - 2016-08-12 - Mainly internal changes. Adds WIPNOTES, updates arduino examples
* 0.0.19 - 2016-01-31 - Continued work on arduino profile and initial Python3 support
Expand Down

0 comments on commit 8bc553b

Please sign in to comment.