We are now getting a deprecation warning when using some of the linear models in this package, e.g. from the example: ```julia n = 500 p = 5 X = randn(n, p) y = 2 * (rand(n) .< 0.5) .- 1 # entries are +-1 λ = 0.5 logistic = LogisticRegression(λ) theta = fit(logistic, X, y) ``` leads to: ```julia Warning: f_tol is deprecated. Use f_abstol or f_reltol instead. The provided value (0.0001) will be used as f_reltol. ```