Skip to content

Commit

Permalink
prepare the drafting of release v1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
hnes committed Jul 29, 2018
1 parent 523f76a commit 3eda876
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ script:
- date
- export EXTRA_CFLAGS=""
- echo ""
- bash test.sh version_check=1.2.3
- bash test.sh version_check=1.2.4
- echo ""
- if [ "$TRAVIS_OS_NAME" = "linux" ] ; then mkdir output ; bash make.sh ; ls output ; ls output | wc -l ; cd output ; bash ../test.sh ; cd .. ; rm -fr output; fi
- echo ""
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ Destroy the `co`. The argument `co` must not be NULL. The private save stack wou
```c
#define ACO_VERSION_MAJOR 1
#define ACO_VERSION_MINOR 2
#define ACO_VERSION_PATCH 3
#define ACO_VERSION_PATCH 4
```

These 3 macros are defined in the header `aco.h` and the value of them follows the spec: [Semantic Versioning 2.0.0](https://semver.org/spec/v2.0.0.html).
Expand Down Expand Up @@ -940,6 +940,9 @@ New ideas are welcome!
# CHANGES

```
v1.2.4 Sun Jul 29 2018
Changed `asm` to `__asm__` in aco.h to support compiler's `--std=c99`
flag (Issue #16, proposed by Theo Schlossnagle @postwait).
v1.2.3 Thu Jul 26 2018
Added support for MacOS;
Added support for shared library build of libaco (PR #10, proposed
Expand Down
2 changes: 1 addition & 1 deletion aco.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ extern "C" {

#define ACO_VERSION_MAJOR 1
#define ACO_VERSION_MINOR 2
#define ACO_VERSION_PATCH 3
#define ACO_VERSION_PATCH 4

#ifdef __i386__
#define ACO_REG_IDX_RETADDR 0
Expand Down

0 comments on commit 3eda876

Please sign in to comment.