From ef9a01aa047f186eb68d3ea9fe6bf6861cac1824 Mon Sep 17 00:00:00 2001 From: Jesse Doyle Date: Mon, 24 Jul 2017 21:35:55 -0600 Subject: [PATCH] Version 0.11.0 * Update changelog and version to `0.11.0`. --- CHANGELOG.md | 4 ++++ README.md | 2 +- shard.yml | 2 +- src/duktape/version.cr | 4 ++-- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aea5a0d..2cd7c8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v0.11.0 - July 24, 2017 + +- Fix compiler issues with Crystal `0.23.0` by making `Duktape::Logger#log_color` accept a `Logger::Severity`. [@kostya, #35] + # v0.10.1 - Jan 31, 2017 - Fix an incorrect type restriction that was causing diff --git a/README.md b/README.md index ef8287e..870a64a 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ version: 1.0.0 # your project's version dependencies: duktape: github: jessedoyle/duktape.cr - version: ~> 0.10.1 + version: ~> 0.11.0 ``` then execute: diff --git a/shard.yml b/shard.yml index 4af3e4a..205936a 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: duktape -version: 0.10.1 +version: 0.11.0 authors: - Jesse Doyle diff --git a/src/duktape/version.cr b/src/duktape/version.cr index ce438e8..c906a09 100644 --- a/src/duktape/version.cr +++ b/src/duktape/version.cr @@ -15,8 +15,8 @@ module Duktape module VERSION MAJOR = 0 - MINOR = 10 - TINY = 1 + MINOR = 11 + TINY = 0 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join "."