Skip to content

Commit 3eda876

Browse files
committed
prepare the drafting of release v1.2.4
1 parent 523f76a commit 3eda876

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ script:
1818
- date
1919
- export EXTRA_CFLAGS=""
2020
- echo ""
21-
- bash test.sh version_check=1.2.3
21+
- bash test.sh version_check=1.2.4
2222
- echo ""
2323
- 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
2424
- echo ""

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ Destroy the `co`. The argument `co` must not be NULL. The private save stack wou
414414
```c
415415
#define ACO_VERSION_MAJOR 1
416416
#define ACO_VERSION_MINOR 2
417-
#define ACO_VERSION_PATCH 3
417+
#define ACO_VERSION_PATCH 4
418418
```
419419

420420
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).
@@ -940,6 +940,9 @@ New ideas are welcome!
940940
# CHANGES
941941

942942
```
943+
v1.2.4 Sun Jul 29 2018
944+
Changed `asm` to `__asm__` in aco.h to support compiler's `--std=c99`
945+
flag (Issue #16, proposed by Theo Schlossnagle @postwait).
943946
v1.2.3 Thu Jul 26 2018
944947
Added support for MacOS;
945948
Added support for shared library build of libaco (PR #10, proposed

aco.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ extern "C" {
3434

3535
#define ACO_VERSION_MAJOR 1
3636
#define ACO_VERSION_MINOR 2
37-
#define ACO_VERSION_PATCH 3
37+
#define ACO_VERSION_PATCH 4
3838

3939
#ifdef __i386__
4040
#define ACO_REG_IDX_RETADDR 0

0 commit comments

Comments
 (0)