Skip to content

Commit

Permalink
Merge pull request #36 from jessedoyle/0.11.0
Browse files Browse the repository at this point in the history
Version 0.11.0
  • Loading branch information
Jesse Doyle authored Jul 25, 2017
2 parents ed3ddab + ef9a01a commit 94b4a2a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.10.1
version: ~> 0.11.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.10.1
version: 0.11.0

authors:
- Jesse Doyle <jdoyle@ualberta.ca>
Expand Down
4 changes: 2 additions & 2 deletions src/duktape/version.cr
Original file line number Diff line number Diff line change
Expand Up @@ -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 "."
Expand Down

0 comments on commit 94b4a2a

Please sign in to comment.