Skip to content

Commit

Permalink
Merge pull request #61 from jessedoyle/release-0.21.0
Browse files Browse the repository at this point in the history
feat(crystal-0.35.1): Update for Crystal 0.35.1
  • Loading branch information
jessedoyle authored Jun 23, 2020
2 parents a714053 + 9992c39 commit f8caf1e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: duktape
version: 0.20.0
version: 0.21.0

authors:
- Jesse Doyle <jdoyle@ualberta.ca>
Expand Down
2 changes: 1 addition & 1 deletion src/duktape/version.cr
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module Duktape

module VERSION
MAJOR = 0
MINOR = 20
MINOR = 21
TINY = 0
PRE = nil

Expand Down

0 comments on commit f8caf1e

Please sign in to comment.