Skip to content

Commit

Permalink
Prepare for 0.17.0 release (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-be committed Dec 20, 2021
1 parent bc55654 commit ec91d9d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

## [0.17.0] - 2021-12-19
## Changed
- Updated to `tch` 1.6.0 (libtorch 1.10)
- Updated to `tch` 0.6.1 (libtorch 1.10)
- (BREAKING) Simplified the generics for multiple library traits taking as a rule `&[AsRef<str>]` or `&str` as inputs (no longer accepts owned types `Vec` and `String`)

## Added
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-bert"
version = "0.16.0"
version = "0.17.0"
authors = ["Guillaume Becquin <guillaume.becquin@gmail.com>"]
edition = "2018"
description = "Ready-to-use NLP pipelines and transformer-based models (BERT, DistilBERT, GPT2,...)"
Expand Down Expand Up @@ -59,18 +59,18 @@ features = ["doc-only"]
[dependencies]
rust_tokenizers = "~7.0.0"
tch = "~0.6.1"
serde_json = "1.0.68"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.73"
serde = { version = "1.0.132", features = ["derive"] }
dirs = "4.0.0"
ordered-float = "2.8.0"
cached-path = "0.5.1"
lazy_static = "1.4.0"
uuid = { version = "0.8.2", features = ["v4"] }
thiserror = "1.0.30"
half = "1.7.1"
half = "1.8.2"

[dev-dependencies]
anyhow = "1.0.44"
anyhow = "1.0.51"
csv = "1.1.6"
criterion = "0.3.5"
torch-sys = "~0.6.1"
Expand Down

0 comments on commit ec91d9d

Please sign in to comment.