Skip to content

Commit c5fa50a

Browse files
danieldkDaniël de Kok
authored andcommitted
Bump finalfusion to 0.12.0 to mark the error API change
1 parent 85e1ad1 commit c5fa50a

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "finalfusion"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
edition = "2018"
55
authors = ["Daniël de Kok <[email protected]>", "Sebastian Pütz <[email protected]>"]
66
description = "Reader and writer for common word embedding formats"

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,19 @@ the API have not reached version 1 (particularly `ndarray` and
1616
`rand`). Future 0.x releases of `finalfusion` will be used to accomodate
1717
updates of these dependencies.
1818

19+
**Heads-up:** there is a small API change between finalfusion 0.11 and
20+
0.12. The `Error` type has been moved from `finalfusion::io` to
21+
`finalfusion::error`. The separate `ErrorKind` enum has been merged
22+
with `Error`. `Error` is now marked as non-exhaustive, so that new
23+
error variants can be added in the future without changing the API.
24+
1925
## Usage
2026

2127
To make `finalfusion` available in your crate, simply place the following
2228
in your `Cargo.toml`
2329

2430
~~~
25-
finalfusion = 0.10
31+
finalfusion = 0.12
2632
~~~
2733

2834
Loading embeddings and querying it is as simple as:

0 commit comments

Comments
 (0)