Skip to content

Commit

Permalink
release v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
noib3 committed Dec 2, 2023
1 parent 9795075 commit d8d786e
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@

## [Unreleased]

## [0.1.1] - Dec 2 2023

Fixed the CI pipeline of the previous release.

## [0.1.0] - Dec 2 2023

Initial public release.

[Unreleased]: https://github.com/nomad/norm/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/nomad/norm/compare/v0.1.1...HEAD
[0.1.0]: https://github.com/nomad/norm/tree/v0.1.1
[0.1.0]: https://github.com/nomad/norm/tree/v0.1.0
33 changes: 30 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "norms"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["Riccardo Mazzarini <me@noib3.dev>"]
description = "A collection of distance metrics on strings"
Expand All @@ -10,7 +10,7 @@ readme = "README.md"
license = "MIT"
keywords = ["text", "fuzzy", "match", "search", "fzf"]
categories = ["algorithms"]
exclude = ["/.github", "/benches", "/fuzz", "/tests"]
exclude = ["/.github", "/fuzz", "CHANGELOG.md"]

[package.metadata.docs.rs]
features = ["fzf-v1", "fzf-v2"]
Expand All @@ -27,14 +27,41 @@ fzf-v2 = ["__any-metric"]
__any-metric = []
__benches = []
__into-score = []
__tests = []
__tests = ["fzf-v1", "fzf-v2"]

[dependencies]
memchr = "2"

[dev-dependencies]
criterion = "0.5"

[[test]]
name = "fzf_common"
required-features = ["__tests"]

[[test]]
name = "fzf_v1"
required-features = ["__tests"]

[[test]]
name = "fzf_v2"
required-features = ["__tests"]

[[bench]]
name = "fzf_common"
harness = false
required-features = ["__benches"]

[[bench]]
name = "fzf_v1"
harness = false
required-features = ["__benches"]

[[bench]]
name = "fzf_v2"
harness = false
required-features = ["__benches"]

[[example]]
name = "cities"
required-features = ["fzf-v2"]

0 comments on commit d8d786e

Please sign in to comment.