This commit is contained in:
Godfrey Chan 2017-08-28 23:10:49 -07:00
parent e47b390d97
commit e43599a1bf
11 changed files with 14 additions and 14 deletions

View File

@ -1,4 +1,4 @@
## 0.6.2 (Unreleased)
## 0.6.2 (August 29, 2017)
* [DEPRECATION] Deprecate passing project name to `BuildTask`

View File

@ -1,6 +1,6 @@
[package]
name = "helix"
version = "0.6.1"
version = "0.6.2"
authors = ["Godhuda <engineering+godhuda@tilde.io>"]
description = "Embed Rust in your Ruby"
documentation = "https://usehelix.com/documentation"
@ -31,7 +31,7 @@ version = "0.3"
[dependencies.libcruby-sys]
path = "crates/libcruby-sys"
version = "0.6.1"
version = "0.6.2"
[dependencies.cstr-macro]
path = "crates/cstr-macro"

View File

@ -1,6 +1,6 @@
[package]
name = "libcruby-sys"
version = "0.6.1"
version = "0.6.2"
authors = ["Godhuda <engineering+godhuda@tilde.io>"]
description = "Ruby bindings"
repository = "https://github.com/tildeio/helix"
@ -11,8 +11,8 @@ include = [
"Cargo.toml",
"ruby_info.rb",
# Keep in sync with version
"helix-runtime-0-6-1.i386.lib",
"helix-runtime-0-6-1.x86_64.lib"
"helix-runtime-0-6-2.i386.lib",
"helix-runtime-0-6-2.x86_64.lib"
]
[dependencies]

View File

@ -1,7 +1,7 @@
PATH
remote: ../../ruby
specs:
helix_runtime (0.6.1)
helix_runtime (0.6.2)
rake (>= 10.0)
thor (~> 0.19.4)
toml (~> 0.1.2)

View File

@ -1,7 +1,7 @@
PATH
remote: ../../ruby
specs:
helix_runtime (0.6.1)
helix_runtime (0.6.2)
rake (>= 10.0)
thor (~> 0.19.4)
toml (~> 0.1.2)

View File

@ -1,7 +1,7 @@
PATH
remote: ../../ruby
specs:
helix_runtime (0.6.1)
helix_runtime (0.6.2)
rake (>= 10.0)
thor (~> 0.19.4)
toml (~> 0.1.2)

View File

@ -1,7 +1,7 @@
PATH
remote: ../../ruby
specs:
helix_runtime (0.6.1)
helix_runtime (0.6.2)
rake (>= 10.0)
thor (~> 0.19.4)
toml (~> 0.1.2)

View File

@ -1,7 +1,7 @@
PATH
remote: ../../ruby
specs:
helix_runtime (0.6.1)
helix_runtime (0.6.2)
rake (>= 10.0)
thor (~> 0.19.4)
toml (~> 0.1.2)

View File

@ -1,7 +1,7 @@
PATH
remote: ../../ruby
specs:
helix_runtime (0.6.1)
helix_runtime (0.6.2)
rake (>= 10.0)
thor (~> 0.19.4)
toml (~> 0.1.2)

View File

@ -6,7 +6,7 @@
#include <helix_runtime.h>
// Update with version.rb
const char* HELIX_RUNTIME_VERSION = "0.6.1";
const char* HELIX_RUNTIME_VERSION = "0.6.2";
const char* HELIX_PRIsVALUE = PRIsVALUE;
const char* HELIX_SPRINTF_TO_S = "%" PRIsVALUE;

View File

@ -1,5 +1,5 @@
module HelixRuntime
# Also update helix_runtime.c
VERSION = "0.6.1"
VERSION = "0.6.2"
GEM_VERSION = VERSION.gsub("-", ".")
end