Skip to content

Commit

Permalink
fixed documentation; increases version
Browse files Browse the repository at this point in the history
  • Loading branch information
sadit committed Jun 22, 2021
1 parent 366e700 commit 59eafe1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SimilaritySearch"
uuid = "053f045d-5466-53fd-b400-a066f88fe02a"
authors = ["Eric S. Tellez <donsadit@gmail.com>"]
version = "0.4.7"
version = "0.5.0"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand Down
3 changes: 1 addition & 2 deletions docs/src/knnresult.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@ println("final: ", collect(res))
```

## Data structures
The `KnnResult` is a collection of `Item` elements, sorted by value.
The `KnnResult` contains two aligned arrays 'id' and 'dist' and an indicator of its maximum capacity 'k'.
```@docs
Item
KnnResult
```

Expand Down

2 comments on commit 59eafe1

@sadit
Copy link
Owner Author

@sadit sadit commented on 59eafe1 Jun 22, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/39422

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.0 -m "<description of version>" 59eafe1a7df91dbbf868d102f1c44b89b728ad63
git push origin v0.5.0

Please sign in to comment.