Skip to content

Commit

Permalink
release version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jessedoyle committed Sep 9, 2015
1 parent dc8a542 commit 4aa2252
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Note: This functionality is considered experimental and syntax/functionality may
It is possible to call Crystal code from your javascript:

```crystal
sbx = Duktape::Context.new
sbx = Duktape::Sandbox.new
sbx.push_proc(2) do |ptr| # 2 stack arguments
env = Duktape::Sandbox.new ptr
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.cr
version: 0.0.1
version: 0.5.0

authors:
- Jesse Doyle <jdoyle@ualberta.ca>
Expand Down
6 changes: 3 additions & 3 deletions src/duktape/version.cr
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ module Duktape

module VERSION
MAJOR = 0
MINOR = 0
TINY = 1
PRE = "alpha"
MINOR = 5
TINY = 0
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join "."

Expand Down

0 comments on commit 4aa2252

Please sign in to comment.