From 9992c39dfa07de0c1e00dd79e679cf048c9785e1 Mon Sep 17 00:00:00 2001 From: Jesse Doyle Date: Mon, 22 Jun 2020 18:38:36 -0600 Subject: [PATCH] feat(crystal-0.35.1): Update for Crystal 0.35.1 * Bump the version to 0.21.0. * Update the `spec` target in the Makefile to include recent changes to environment variables for logging. * Update CHANGELOG to reflect recent changes. --- CHANGELOG.md | 5 +++++ Makefile | 2 +- README.md | 2 +- shard.yml | 2 +- src/duktape/version.cr | 2 +- 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8be8aa6..34b40cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# v0.21.0 - June 22, 2020 + +* **breaking change**: Rename the `CRYSTAL_LOG_LEVEL` and `CRYSTAL_LOG_SOURCES` environment variables to `LOG_LEVEL` and `LOG_SOURCES` respectively to match changes in Crystal core. +* Support Crystal >= 0.35.1. + # v0.20.0 - April 13, 2020 * **breaking change**: Remove the `Duktape::Logger` module and constants. diff --git a/Makefile b/Makefile index 1313158..086428f 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ duktape: $(OUTPUT)/duktape libduktape: $(MAKE) -C $(EXT) libduktape spec: all_spec - @CRYSTAL_LOG_LEVEL=$(CRYSTAL_LOG_LEVEL) CRYSTAL_LOG_SOURCES=$(CRYSTAL_LOG_SOURCES) $(OUTPUT)/all_spec + @LOG_LEVEL=$(CRYSTAL_LOG_LEVEL) LOG_SOURCES=$(CRYSTAL_LOG_SOURCES) $(OUTPUT)/all_spec all_spec: $(OUTPUT)/all_spec $(OUTPUT)/all_spec: $(SOURCES) $(SPEC_SOURCES) @mkdir -p $(OUTPUT) diff --git a/README.md b/README.md index f98c3dc..c4540e6 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.20.0 + version: ~> 0.21.0 ``` then execute: diff --git a/shard.yml b/shard.yml index dd7bbdb..9801acd 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: duktape -version: 0.20.0 +version: 0.21.0 authors: - Jesse Doyle diff --git a/src/duktape/version.cr b/src/duktape/version.cr index b8b3902..2f28dec 100644 --- a/src/duktape/version.cr +++ b/src/duktape/version.cr @@ -15,7 +15,7 @@ module Duktape module VERSION MAJOR = 0 - MINOR = 20 + MINOR = 21 TINY = 0 PRE = nil