diff --git a/.bumpversion.cfg b/.bumpversion.cfg index da9c66d3..4b20338d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.7 +current_version = 0.8.8 commit = False tag = False @@ -10,4 +10,3 @@ tag = False [bumpversion:file:src/printing.jl] [bumpversion:file:src/COSMO.jl] - diff --git a/Project.toml b/Project.toml index 06cb44b4..171ef9d6 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "COSMO" uuid = "1e616198-aa4e-51ec-90a2-23f7fbd31d8d" authors = ["Michael "] -version = "0.8.7" +version = "0.8.8" [deps] AMD = "14f7f29c-3bd6-536c-9a0b-7339e30b5a3e" diff --git a/README.md b/README.md index 3da9e6d3..a928162a 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ - +

diff --git a/src/COSMO.jl b/src/COSMO.jl index ea0b8447..5a840662 100644 --- a/src/COSMO.jl +++ b/src/COSMO.jl @@ -25,7 +25,7 @@ function __init__() end function version() - v"0.8.7" + v"0.8.8" end diff --git a/src/printing.jl b/src/printing.jl index 0734f25e..58856ae0 100644 --- a/src/printing.jl +++ b/src/printing.jl @@ -6,7 +6,7 @@ function print_header(ws::COSMO.Workspace{T}) where {T <: AbstractFloat} settings = ws.settings settings.scaling > 0 ? scaling_status = "on" : scaling_status = "off" - println("-"^66 * "\n" * " "^10 * "COSMO v0.8.7 - A Quadratic Objective Conic Solver\n" * " "^25 * "Michael Garstka\n" * " "^16 * "University of Oxford, 2017 - 2022\n" * "-"^66 * "\n") + println("-"^66 * "\n" * " "^10 * "COSMO v0.8.8 - A Quadratic Objective Conic Solver\n" * " "^25 * "Michael Garstka\n" * " "^16 * "University of Oxford, 2017 - 2022\n" * "-"^66 * "\n") println("Problem: x ∈ R^{$(n)},\n constraints: A ∈ R^{$(m)x$(n)} ($(count(!iszero, ws.p.A)) nnz),\n matrix size to factor: $(n + m)x$(n + m),\n Floating-point precision: $(T)") for (iii, set) in enumerate(sort(ws.p.C.sets, by = x -> -x.dim))