Skip to content

Commit

Permalink
Bump version -> 0.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
migarstka committed Mar 4, 2023
1 parent 39ce661 commit c432b06
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[bumpversion]
current_version = 0.8.6
commit = True
current_version = 0.8.7
commit = False
tag = False

[bumpversion:file:README.md]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,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.8.6-blue.svg"></a>
<a href="https://github.com/oxfordcontrol/COSMO.jl/releases"><img src="https://img.shields.io/badge/Release-v0.8.7-blue.svg"></a>
</p>

<p align="center">
Expand Down
2 changes: 1 addition & 1 deletion src/COSMO.jl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function __init__()
end

function version()
v"0.8.6"
v"0.8.7"
end


Expand Down
2 changes: 1 addition & 1 deletion src/printing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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.6 - 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.7 - 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))
Expand Down

2 comments on commit c432b06

@migarstka
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/78937

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.8.7 -m "<description of version>" c432b06b656a5a9a353f992fcde1337a32b964bd
git push origin v0.8.7

Please sign in to comment.