diff --git a/CHANGELOG.md b/CHANGELOG.md index 6497c3c..0bf44b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.6.0 (2015-05-24) + + * Update picolisp-unit to v1.0.0 + * Update nanomsg to 0.7-beta + ## 0.5.29 (2015-05-24) * Update to picolisp-unit v0.6.2 diff --git a/EXPLAIN.md b/EXPLAIN.md index 11a6336..901f2ff 100644 --- a/EXPLAIN.md +++ b/EXPLAIN.md @@ -203,7 +203,7 @@ We create a `cons` pair using the [@ result](http://software-lab.de/doc/ref.html If the `nn-symbol` call returns `NIL`, then we've reached the end of the list of constants, so the `while` loop exits, and our `*NN_Symbols` variable is fully set: -Here is a truncated `*NN_Symbols` list from nanomsg 0.5-beta: +Here is a truncated `*NN_Symbols` list from nanomsg 0.7-beta: ```lisp diff --git a/Makefile b/Makefile index d17a3b7..bcfde89 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ PIL_SYMLINK_DIR ?= .lib ## Edit below BUILD_REPO = https://github.com/nanomsg/nanomsg.git BUILD_DIR = $(PIL_MODULE_DIR)/nanomsg/HEAD -BUILD_REF = 0.5-beta +BUILD_REF = 0.7-beta LIB_DIR = .libs TARGET = libnanomsg.so BFLAGS = --enable-shared diff --git a/README.md b/README.md index 33c6659..19e3b51 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Nanomsg FFI bindings for PicoLisp -[![GitHub release](https://img.shields.io/github/release/aw/picolisp-nanomsg.svg)](https://github.com/aw/picolisp-nanomsg) [![Build Status](https://travis-ci.org/aw/picolisp-nanomsg.svg?branch=master)](https://travis-ci.org/aw/picolisp-nanomsg) [![Dependency](https://img.shields.io/badge/%5Bdeps%5D%20Nanomsg-0.5--beta-ff69b4.svg)](https://github.com/nanomsg/nanomsg) [![Dependency](https://img.shields.io/badge/[deps] picolisp--unit-v0.6.2-ff69b4.svg)](https://github.com/aw/picolisp-unit.git) +[![GitHub release](https://img.shields.io/github/release/aw/picolisp-nanomsg.svg)](https://github.com/aw/picolisp-nanomsg) [![Build Status](https://travis-ci.org/aw/picolisp-nanomsg.svg?branch=master)](https://travis-ci.org/aw/picolisp-nanomsg) [![Dependency](https://img.shields.io/badge/%5Bdeps%5D%20Nanomsg-0.7--beta-ff69b4.svg)](https://github.com/nanomsg/nanomsg) [![Dependency](https://img.shields.io/badge/[deps] picolisp--unit-v1.0.0-ff69b4.svg)](https://github.com/aw/picolisp-unit.git) [Nanomsg](http://nanomsg.org/index.html) FFI bindings for [PicoLisp](http://picolisp.com/). diff --git a/module.l b/module.l index 4440c99..52ceeb7 100644 --- a/module.l +++ b/module.l @@ -1,6 +1,6 @@ [de MODULE_INFO ("name" "nanomsg") - ("version" "0.5.28") + ("version" "0.6.0") ("summary" "Nanomsg ffi-binding for PicoLisp") ("source" "https://github.com/aw/picolisp-nanomsg.git") ("author" "Alexander Williams") @@ -9,4 +9,4 @@ ("install" "make") ("requires" ("picolisp-unit" "v1.0.0" "https://github.com/aw/picolisp-unit.git") - ("nanomsg" "0.5-beta" "https://github.com/nanomsg/nanomsg.git") ] + ("nanomsg" "0.7-beta" "https://github.com/nanomsg/nanomsg.git") ]