diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ea5106..b2bb9e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [1.0.1] - 2015-10-05 +### Fixed +- Corrected contract for `identikon->string` +- Removed `identikon->string` example from Scribble because confusion on eval + ## [1.0.0] - 2015-10-04 ### Changed - Significant changes to API for `identikon`. Please see updated documentation. Related to [#16](https://github.com/DarrenN/identikon/issues/16) diff --git a/info.rkt b/info.rkt index af7ae88..f2eb42e 100644 --- a/info.rkt +++ b/info.rkt @@ -1,6 +1,6 @@ #lang info (define collection "identikon") -(define version "1.0.0") +(define version "1.0.1") (define scribblings '(("scribblings/identikon.scrbl" ()))) (define deps '("base" "sugar" diff --git a/main.rkt b/main.rkt index 73f8922..abf59e0 100644 --- a/main.rkt +++ b/main.rkt @@ -25,8 +25,8 @@ image?) (#:quality number?) boolean?)] - [identikon->string (->* (image? - (or/c symbol? string?)) + [identikon->string (->* ((or/c symbol? string?) + image?) (#:quality number?) string?)]))