Skip to content

Commit 20057a1

Browse files
authored
Merge pull request #16 from bxparks/develop
merge 1.0.1 into master
2 parents 388ceef + 31820ed commit 20057a1

File tree

218 files changed

+4604
-2995
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

218 files changed

+4604
-2995
lines changed

.github/workflows/aunit_tests.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: AUnit Tests
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-18.04
9+
10+
steps:
11+
- uses: actions/checkout@v2
12+
13+
- name: Setup
14+
run: |
15+
cd ..
16+
git clone https://github.com/bxparks/UnixHostDuino
17+
git clone https://github.com/bxparks/AUnit
18+
19+
- name: Verify examples
20+
run: |
21+
make -C examples
22+
23+
- name: Run tests
24+
run: |
25+
make -C tests
26+
make -C tests runtests

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,6 @@
3030
*.exe
3131
*.out
3232
*.app
33+
34+
# Doxygen backup file
35+
doxygen.cfg.bak

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
# Changelog
22

33
* Unreleased
4+
* 1.0.1 (2020-09-18)
5+
* Add continuous integration using GitHub Actions.
6+
* Add more documentation and examples of Manual Coroutines in README.md.
7+
Manual Coroutines are often more useful than Custom Coroutines, which I
8+
have found useful only for unit testing.
9+
* [HelloManualCoroutine](examples/HelloManualCoroutine)
10+
* [BlinkSlowFastManualRoutine](examples/BlinkSlowFastManualRoutine)
11+
* Simplify the HelloCoroutine and HelloScheduler examples.
412
* 1.0 (2019-09-04)
513
* Support UnixHostDuino in all sketches under `examples/`.
6-
* Rename `Flash.h' to `compat.h`. Reenable `F()` strings for ESP8266.
14+
* Rename `Flash.h` to `compat.h`. Reenable `F()` strings for ESP8266.
715
* Fix various programs in `examples/` to work using clang++ (using
816
UnixHostDuio) which automatically fixes them on MacOS.
917
* Graduate out of beta to v1.0.

0 commit comments

Comments
 (0)