Skip to content

Commit

Permalink
Bump version and update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
tizoc committed May 18, 2021
1 parent 8abba3d commit fefebda
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.4] - 2021-05-18

### Added

- Implementation of `ToOCaml<T>` for `BoxRoot<T>`.

### Added

- Conversion from/to unit (`()`) values.

## [0.8.3] - 2021-04-30

### Added
Expand Down Expand Up @@ -197,7 +207,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/tezedge/ocaml-interop/compare/v0.8.3...HEAD
[Unreleased]: https://github.com/tezedge/ocaml-interop/compare/v0.8.4...HEAD
[0.8.4]: https://github.com/tezedge/ocaml-interop/compare/v0.8.3...v0.8.4
[0.8.3]: https://github.com/tezedge/ocaml-interop/compare/v0.8.2...v0.8.3
[0.8.2]: https://github.com/tezedge/ocaml-interop/compare/v0.8.1...v0.8.2
[0.8.1]: https://github.com/tezedge/ocaml-interop/compare/v0.8.0...v0.8.1
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.8.3" # remember to update html_root_url
version = "0.8.4" # 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.8.3")]
#![doc(html_root_url = "https://docs.rs/ocaml-interop/0.8.4")]

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

0 comments on commit fefebda

Please sign in to comment.