From db2c3a2f555ec1bccd65cf9ed369ec796112419f Mon Sep 17 00:00:00 2001 From: Davide Scola Date: Wed, 23 May 2018 10:36:08 +0000 Subject: [PATCH 1/3] force internal linkage for inline functions within the encode.c translation unit --- src/encode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/encode.c b/src/encode.c index 7eb1884..7b58c9e 100644 --- a/src/encode.c +++ b/src/encode.c @@ -36,7 +36,7 @@ * @return unsigned char * The decimal value or 0 in case of error. */ -INLINE ALWAYS_INLINE unsigned char ord(char ch) { +static INLINE ALWAYS_INLINE unsigned char ord(char ch) { return (ch >= L'0' && ch <= L'9') ? (ch - L'0') : ( (ch >= L'a' && ch <= L'f') ? (ch - L'a' + 10) : 0 ); @@ -51,7 +51,7 @@ INLINE ALWAYS_INLINE unsigned char ord(char ch) { * @return char * The hexadecimal character (lowercase). */ -INLINE ALWAYS_INLINE char ch(unsigned char ord) { +static INLINE ALWAYS_INLINE char ch(unsigned char ord) { return ((ord & 0x0F) >= 0 && (ord & 0x0F) <= 9) ? ((ord & 0x0F) + L'0') : ( (ord & 0x0F) + L'a' - 10 ); From 6700b57e48d71950ed8b41bf01f5b58d74f01906 Mon Sep 17 00:00:00 2001 From: Davide Scola Date: Wed, 23 May 2018 10:37:05 +0000 Subject: [PATCH 2/3] update the stability report to unstable --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 699a9b3..337f7d2 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ![GitHub (Pre-)Release Date](https://img.shields.io/github/release-date-pre/bitfinexcom/grenache-cli.svg) ![GitHub last commit](https://img.shields.io/github/last-commit/bitfinexcom/grenache-cli.svg) ![GitHub pull requests](https://img.shields.io/github/issues-pr/bitfinexcom/grenache-cli.svg) -![stability-wip](https://img.shields.io/badge/stability-work_in_progress-lightgrey.svg) +![stability-unstable](https://img.shields.io/badge/stability-unstable-yellow.svg) From a6dc3f68e39a1770a7b0b41b0068ae06d5165fbf Mon Sep 17 00:00:00 2001 From: Davide Scola Date: Wed, 23 May 2018 10:39:57 +0000 Subject: [PATCH 3/3] bump version to 0.6.1 --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 2d8c12e..3689104 100644 --- a/configure.ac +++ b/configure.ac @@ -15,9 +15,9 @@ dnl implied. See the License for the specific language governing permissions dnl and limitations under the License. AC_PREREQ(2.69) -AC_INIT([grenache-cli], [0.6.0], [davide@bitfinex.com]) +AC_INIT([grenache-cli], [0.6.1], [davide@bitfinex.com]) -AC_SUBST([VERSION], [0.6.0]) +AC_SUBST([VERSION], [0.6.1]) AC_SUBST([SB], [`$srcdir/shtool echo -n -e %B`]) AC_SUBST([EB], [`$srcdir/shtool echo -n -e %b`])