Skip to content

Commit

Permalink
Bump version to 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tizoc committed Jan 28, 2024
1 parent f4e2abc commit 2ba50ef
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.0] - 2024-01-28

### Added

- Support for OCaml arrays (PR #61 by @mt-caret).
Expand Down Expand Up @@ -265,7 +267,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `OCaml<f64>` is no longer a valid representation for OCaml floats, use `OCaml<OCamlFloat>` instead.
- `keep` method in GC handles and `OCaml<T>` values was removed. The `keep` method in root variables should be used instead, or the third optional parameter of the `to_ocaml!` macro.

[Unreleased]: https://github.com/tizoc/ocaml-interop/compare/v0.9.2...HEAD
[Unreleased]: https://github.com/tizoc/ocaml-interop/compare/v0.10.0...HEAD
[0.10.0]: https://github.com/tizoc/ocaml-interop/compare/v0.9.2...v0.10.0
[0.9.2]: https://github.com/tizoc/ocaml-interop/compare/v0.9.1...v0.9.2
[0.9.1]: https://github.com/tizoc/ocaml-interop/compare/v0.9.0...v0.9.1
[0.9.0]: https://github.com/tizoc/ocaml-interop/compare/v0.8.8...v0.9.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ocaml-interop"
version = "0.9.2" # remember to update html_root_url
version = "0.10.0" # remember to update html_root_url
authors = ["Bruno Deferrari <utizoc@gmail.com>"]
license = "MIT"
description = "Utilities for Rust and OCaml interoperability"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Viable Systems and TezEdge Contributors
// SPDX-License-Identifier: MIT

#![doc(html_root_url = "https://docs.rs/ocaml-interop/0.9.2")]
#![doc(html_root_url = "https://docs.rs/ocaml-interop/0.10.0")]

//! _Zinc-iron alloy coating is used in parts that need very good corrosion protection._
//!
Expand Down

0 comments on commit 2ba50ef

Please sign in to comment.