Skip to content

Commit

Permalink
pump new release of v0.11.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jbytecode committed Aug 15, 2024
1 parent bab3d81 commit 1d8399f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# v0.11.4 (Upcoming Release)
# v0.11.5 (Upcoming Release)


# v0.11.4

- More explicit return types, drop `Dict` with `Dict{String, Any}` or `Dict{String, Vector}`
- Add `Julia v.1.10` to GitHub actions
Expand All @@ -8,6 +11,7 @@
- `summary()` throws `ErrorException` rather than simply prompting with `@error` macro.
- `robcov` doesn't use try and catch any more.
- Replace `sortperm` with `sortperm!` in mve.
- Set number of iterations to minimum([5 * p, 3000]) of LTS as in the R implementation. This reduces the time required 3x.

# v0.11.3

Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "LinRegOutliers"
uuid = "6d4de0fb-32d9-4c65-aac1-cc9ed8b94b1a"
authors = ["Mehmet Hakan Satman <[email protected]>", "Shreesh Adiga <[email protected]>", "Guillermo Angeris <[email protected]>", "Emre Akadal <[email protected]>"]
version = "0.11.3"
version = "0.11.4"

[deps]
Clustering = "aaaa29a8-35af-508c-8bc3-b662a17a0fe5"
Expand Down

2 comments on commit 1d8399f

@jbytecode
Copy link
Owner Author

Choose a reason for hiding this comment

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

@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/113203

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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.11.4 -m "<description of version>" 1d8399f4aabd491e856ced240362a3e0326e1441
git push origin v0.11.4

Please sign in to comment.