Skip to content

Commit

Permalink
Bump version: 0.4.3 → 0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
migarstka committed Aug 23, 2019
1 parent 2771e0a commit 80fe9e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
6 changes: 1 addition & 5 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# use this file to bump the version in README and the printed header
# this also creates a "bump version" commit
# >> bumpversion [major/minor/patch]

[bumpversion]
current_version = 0.4.3
current_version = 0.4.4
commit = True
tag = False

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a href="https://codecov.io/gh/oxfordcontrol/COSMO.jl"><img src="https://codecov.io/gh/oxfordcontrol/COSMO.jl/branch/master/graph/badge.svg"></a>
<a href="https://oxfordcontrol.github.io/COSMO.jl/stable"><img src="https://img.shields.io/badge/Documentation-stable-purple.svg"></a>
<a href="https://opensource.org/licenses/Apache-2.0"><img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg"></a>
<a href="https://github.com/oxfordcontrol/COSMO.jl/releases"><img src="https://img.shields.io/badge/Release-v0.4.3-blue.svg"></a>
<a href="https://github.com/oxfordcontrol/COSMO.jl/releases"><img src="https://img.shields.io/badge/Release-v0.4.4-blue.svg"></a>
</p>

<p align="center">
Expand Down
2 changes: 1 addition & 1 deletion src/printing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function print_header(ws::COSMO.Workspace)
settings.scaling > 0 ? scaling_status = "on" : scaling_status = "off"
nnz_in_P = count(!iszero,ws.p.P) - count(!iszero,diag(ws.p.P)) + n
nnz_in_M = 2*count(!iszero,ws.p.A) + nnz_in_P + m
println("-"^66 * "\n" * " "^10 * "COSMO v0.4.3 - A Quadratic Objective Conic Solver\n" * " "^25 * "Michael Garstka\n" * " "^16 * "University of Oxford, 2017 - 2019\n" * "-"^66 * "\n")
println("-"^66 * "\n" * " "^10 * "COSMO v0.4.4 - A Quadratic Objective Conic Solver\n" * " "^25 * "Michael Garstka\n" * " "^16 * "University of Oxford, 2017 - 2019\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) ($(nnz_in_M) nnz)")
for (iii, set) in enumerate(sort(ws.p.C.sets, by = x -> -x.dim))
Expand Down

0 comments on commit 80fe9e1

Please sign in to comment.