This commit is contained in:
Terence Lee 2017-09-05 17:03:37 -05:00
parent 4ff13d2426
commit 2864f15db3
No known key found for this signature in database
GPG Key ID: FB54F2C65BE915C7
11 changed files with 19 additions and 15 deletions

View File

@ -1,3 +1,7 @@
## 0.6.4 (September 7, 2017)
* [BUGFIX] Compile 32-bit windows .lib with 32-bit toolchain
## 0.6.3 (August 30, 2017)
* [BUGFIX] Include *.lib in libcruby-sys

View File

@ -1,6 +1,6 @@
[package]
name = "helix"
version = "0.6.3"
version = "0.6.4"
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.3"
version = "0.6.4"
[dependencies.cstr-macro]
path = "crates/cstr-macro"

View File

@ -1,6 +1,6 @@
[package]
name = "libcruby-sys"
version = "0.6.3"
version = "0.6.4"
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-3.i386.lib",
"helix-runtime-0-6-3.x86_64.lib"
"helix-runtime-0-6-4.i386.lib",
"helix-runtime-0-6-4.x86_64.lib"
]
[dependencies]

View File

@ -1,7 +1,7 @@
PATH
remote: ../../ruby
specs:
helix_runtime (0.6.3)
helix_runtime (0.6.4)
rake (>= 10.0)
thor (~> 0.19.4)
toml (~> 0.1.2)
@ -14,7 +14,7 @@ GEM
diff-lcs (1.3)
parslet (1.5.0)
blankslate (~> 2.0)
rake (10.4.2)
rake (10.5.0)
rspec (3.5.0)
rspec-core (~> 3.5.0)
rspec-expectations (~> 3.5.0)

View File

@ -1,7 +1,7 @@
PATH
remote: ../../ruby
specs:
helix_runtime (0.6.3)
helix_runtime (0.6.4)
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.3)
helix_runtime (0.6.4)
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.3)
helix_runtime (0.6.4)
rake (>= 10.0)
thor (~> 0.19.4)
toml (~> 0.1.2)
@ -13,7 +13,7 @@ GEM
diff-lcs (1.2.5)
parslet (1.5.0)
blankslate (~> 2.0)
rake (10.4.2)
rake (10.5.0)
rspec (3.4.0)
rspec-core (~> 3.4.0)
rspec-expectations (~> 3.4.0)

View File

@ -1,7 +1,7 @@
PATH
remote: ../../ruby
specs:
helix_runtime (0.6.3)
helix_runtime (0.6.4)
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.3)
helix_runtime (0.6.4)
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.3";
const char* HELIX_RUNTIME_VERSION = "0.6.4";
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.3"
VERSION = "0.6.4"
GEM_VERSION = VERSION.gsub("-", ".")
end