Skip to content

Commit b9e1918

Browse files
authored
prepare 1.0.0 release (#155)
1 parent 38b9b3d commit b9e1918

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

.cargo/config.toml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[build]
2+
rustflags = ["-Crelocation-model=dynamic-no-pic"]

CHANGES.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.0.0
2+
3+
- Minor improvements https://github.com/zshipko/ocaml-rs/pull/154
4+
- Fortran bigarray layout by @crackcomm https://github.com/zshipko/ocaml-rs/pull/145
5+
- Fix conversion of `Vec<f32>` by @gridbugs https://github.com/zshipko/ocaml-rs/pull/144
6+
17
## 1.0.0-beta.5
28

39
- Implement `ToValue` for `Box<T>` by @fmckeogh https://github.com/zshipko/ocaml-rs/pull/107

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ocaml"
3-
version = "1.0.0-beta.5"
3+
version = "1.0.0"
44
authors = ["Zach Shipko <[email protected]>"]
55
readme = "README.md"
66
keywords = ["ocaml", "rust", "ffi"]
@@ -14,9 +14,9 @@ edition = "2021"
1414
features = [ "without-ocamlopt", "derive", "link" ]
1515

1616
[dependencies]
17-
ocaml-sys = {path = "./sys", version = ">=0.23"}
17+
ocaml-sys = {path = "./sys", version = ">=0.24"}
1818
ocaml-boxroot-sys = {version = "0.3.1"}
19-
ocaml-derive = {path = "./derive", optional = true, version = "^1.0.0-beta.5"}
19+
ocaml-derive = {path = "./derive", optional = true, version = "^1.0.0"}
2020
cstr_core = {version = "0.2", optional = true}
2121
ndarray = {version = "^0.16.1", optional = true}
2222

build/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ocaml-build"
3-
version = "1.0.0-beta.5"
3+
version = "1.0.0"
44
edition = "2021"
55
authors = ["Zach Shipko <[email protected]>"]
66
license = "ISC"

derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ocaml-derive"
3-
version = "1.0.0-beta.5"
3+
version = "1.0.0"
44
authors = ["Zach Shipko <[email protected]>"]
55
license = "ISC"
66
keywords = ["ocaml-rs", "proc-macro"]

0 commit comments

Comments
 (0)