This commit is contained in:
Godfrey Chan 2018-06-04 16:15:00 -04:00
parent c6c0011b4b
commit 68b9daeeee
5 changed files with 11 additions and 7 deletions

View File

@ -1,3 +1,7 @@
## 0.7.5 (June 4, 2018)
* [IMPROVEMENT] Add coercion for `usize` and `isize`
## 0.7.4 (June 2, 2018)
* [BUGFIX] Ensure classes with a `struct` also defines `initialize`

View File

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

View File

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

View File

@ -7,7 +7,7 @@
#include <helix_runtime.h>
// Update with version.rb
const char* HELIX_RUNTIME_VERSION = "0.7.4";
const char* HELIX_RUNTIME_VERSION = "0.7.5";
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.7.4"
VERSION = "0.7.5"
GEM_VERSION = VERSION.gsub("-", ".")
end