Skip to content

Commit

Permalink
Merge pull request #64 from Kanezoh/update-to-crystal1.0.0
Browse files Browse the repository at this point in the history
update to crystal version 1.0.0
  • Loading branch information
jessedoyle committed Apr 2, 2021
2 parents f8caf1e + 16c978d commit 8fd19a0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
# v1.0.0 - April 2, 2021

* Specify a `crystal` constraint of `>= 0.35.1` for compatibility with Crystal 1.0.0. Thanks @Kanezoh!

# 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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -18,7 +18,7 @@ version: 1.0.0 # your project's version
dependencies:
duktape:
github: jessedoyle/duktape.cr
version: ~> 0.21.0
version: ~> 1.0.0
```

then execute:
Expand Down
4 changes: 3 additions & 1 deletion shard.yml
@@ -1,5 +1,5 @@
name: duktape
version: 0.21.0
version: 1.0.0

authors:
- Jesse Doyle <jdoyle@ualberta.ca>
Expand All @@ -12,4 +12,6 @@ development_dependencies:
github: veelenga/ameba
version: '~> 0.10'

crystal: '>= 0.35.1'

license: MIT
4 changes: 2 additions & 2 deletions src/duktape/version.cr
Expand Up @@ -14,8 +14,8 @@ module Duktape
end

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

Expand Down

0 comments on commit 8fd19a0

Please sign in to comment.