From ac2593bfccd1208a3605e2ef764a868b58f656ec Mon Sep 17 00:00:00 2001 From: Michael Garstka Date: Mon, 3 Aug 2020 09:57:32 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.7.3=20=E2=86=92=200.7.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- Project.toml | 2 +- README.md | 2 +- src/printing.jl | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ebf0ce64..fb4c9f71 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.3 +current_version = 0.7.4 commit = True tag = False diff --git a/Project.toml b/Project.toml index 97836e22..dd094825 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "COSMO" uuid = "1e616198-aa4e-51ec-90a2-23f7fbd31d8d" authors = ["Michael "] -version = "0.7.3" +version = "0.7.4" [deps] DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8" diff --git a/README.md b/README.md index e233cdaf..7d0c49f9 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ - +

diff --git a/src/printing.jl b/src/printing.jl index ca750080..ff7c5571 100644 --- a/src/printing.jl +++ b/src/printing.jl @@ -5,7 +5,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.7.3 - A Quadratic Objective Conic Solver\n" * " "^25 * "Michael Garstka\n" * " "^16 * "University of Oxford, 2017 - 2020\n" * "-"^66 * "\n") + println("-"^66 * "\n" * " "^10 * "COSMO v0.7.4 - A Quadratic Objective Conic Solver\n" * " "^25 * "Michael Garstka\n" * " "^16 * "University of Oxford, 2017 - 2020\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))