Skip to content

Commit

Permalink
2.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
liborty committed Mar 6, 2024
1 parent b00ca18 commit 2dee622
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ maintenance = { status = "actively-developed" }
[dependencies]
rayon = "1.9"
indxvec = "1.8"
medians = "3.0"
medians = "3.0.8"
ran = "2.0"
[dev-dependencies]
times = "1.0"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ Methods which take an additional generic vector argument, such as a vector of we

## Appendix: Recent Releases

* **Version 2.0.9** - Pruned some rarely used methods, simplified `gmparts` and `gmerror`.
* **Version 2.0.9** - Pruned some rarely used methods, simplified `gmparts` and `gmerror`, updated dependencies.

* **Version 2.0.8**' - Changed initial guess in iterative weighted gm methods to weighted mean. This, being more accurate than plain mean, leads to fewer iterations. Updated some dependecies.

Expand Down
2 changes: 1 addition & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use medians::error::MedError;
use medians::MedError;
use ran::RanError;
use std::error::Error;
use std::fmt;
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub mod vecvecg;
pub use crate::error::{re_error, RError, RE};
// reexporting useful related methods
pub use indxvec::{here, printing::*, MinMax, Printing};
pub use medians::{error::MedError, Median, Medianf64};
pub use medians::{MedError, Median, Medianf64};

// Auxiliary Functions

Expand Down
2 changes: 1 addition & 1 deletion src/vecvec.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::{here,sumn, re_error, RError, RE, Params, MinMax, MutVecg, Stats, TriangMat, VecVec, Vecg};
use indxvec::Vecops;
use medians::{error::MedError, Medianf64};
use medians::{MedError, Medianf64};
use rayon::prelude::*;

impl<T> VecVec<T> for &[Vec<T>]
Expand Down

0 comments on commit 2dee622

Please sign in to comment.