Skip to content

Commit

Permalink
Prepare release 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pemistahl committed Dec 12, 2023
1 parent ac9480e commit c5414c5
Show file tree
Hide file tree
Showing 20 changed files with 2,615 additions and 1,944 deletions.
3,761 changes: 1,887 additions & 1,874 deletions README.md

Large diffs are not rendered by default.

780 changes: 712 additions & 68 deletions README_PYPI.md

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## Lingua 1.6.2 (released on 12 Dec 2023)

### Improvements

- Type stubs for the Python bindings are now available, allowing better static code
analysis, better code completion in supported IDEs and easier understanding of
the library's API.

### Bug Fixes

- The method `LanguageDetector.detect_multiple_languages_of` still returned character
indices instead of byte indices when only a single `DetectionResult` was produced.
This has been fixed.

## Lingua 1.6.1 (released on 23 Nov 2023)

### Bug Fixes
Expand Down
Binary file modified images/plots/barplot-average-all-languages.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/barplot-average-common-languages.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/barplot-sentences-all-languages.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/barplot-sentences-common-languages.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/barplot-single-words-all-languages.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/barplot-single-words-common-languages.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/barplot-word-pairs-all-languages.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/barplot-word-pairs-common-languages.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/boxplot-average-all-languages.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/boxplot-average-common-languages.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/boxplot-sentences-all-languages.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/boxplot-sentences-common-languages.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/boxplot-single-words-all-languages.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/boxplot-single-words-common-languages.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/boxplot-word-pairs-all-languages.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/boxplot-word-pairs-common-languages.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
//!
//! ```toml
//! [dependencies]
//! lingua = "1.6.1"
//! lingua = "1.6.2"
//! ```
//!
//! By default, this will download the language model dependencies for all 75 supported languages,
Expand All @@ -118,7 +118,7 @@
//!
//! ```toml
//! [dependencies]
//! lingua = { version = "1.6.1", default-features = false, features = ["french", "italian", "spanish"] }
//! lingua = { version = "1.6.2", default-features = false, features = ["french", "italian", "spanish"] }
//! ```
//!
//! ## 7. How to use?
Expand Down

0 comments on commit c5414c5

Please sign in to comment.