Skip to content

Commit

Permalink
prepare 1.0.0 release (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
zshipko authored Aug 30, 2024
1 parent 38b9b3d commit b9e1918
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[build]
rustflags = ["-Crelocation-model=dynamic-no-pic"]
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.0.0

- Minor improvements https://github.com/zshipko/ocaml-rs/pull/154
- Fortran bigarray layout by @crackcomm https://github.com/zshipko/ocaml-rs/pull/145
- Fix conversion of `Vec<f32>` by @gridbugs https://github.com/zshipko/ocaml-rs/pull/144

## 1.0.0-beta.5

- Implement `ToValue` for `Box<T>` by @fmckeogh https://github.com/zshipko/ocaml-rs/pull/107
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ocaml"
version = "1.0.0-beta.5"
version = "1.0.0"
authors = ["Zach Shipko <zachshipko@gmail.com>"]
readme = "README.md"
keywords = ["ocaml", "rust", "ffi"]
Expand All @@ -14,9 +14,9 @@ edition = "2021"
features = [ "without-ocamlopt", "derive", "link" ]

[dependencies]
ocaml-sys = {path = "./sys", version = ">=0.23"}
ocaml-sys = {path = "./sys", version = ">=0.24"}
ocaml-boxroot-sys = {version = "0.3.1"}
ocaml-derive = {path = "./derive", optional = true, version = "^1.0.0-beta.5"}
ocaml-derive = {path = "./derive", optional = true, version = "^1.0.0"}
cstr_core = {version = "0.2", optional = true}
ndarray = {version = "^0.16.1", optional = true}

Expand Down
2 changes: 1 addition & 1 deletion build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ocaml-build"
version = "1.0.0-beta.5"
version = "1.0.0"
edition = "2021"
authors = ["Zach Shipko <zachshipko@gmail.com>"]
license = "ISC"
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ocaml-derive"
version = "1.0.0-beta.5"
version = "1.0.0"
authors = ["Zach Shipko <zachshipko@gmail.com>"]
license = "ISC"
keywords = ["ocaml-rs", "proc-macro"]
Expand Down

0 comments on commit b9e1918

Please sign in to comment.