Skip to content

Commit

Permalink
Cleaning up to bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
mariohsouto committed May 7, 2023
2 parents 4ec6b58 + 6d00db0 commit 280e5de
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ language: julia
os:
- linux
julia:
- 1.0
- 1
- 1.8
- 1.7
notifications:
email: false
sudo: false
Expand Down
7 changes: 2 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,18 @@
name = "ProxSDP"
uuid = "65e78d25-6039-50a4-9445-38022e3d2eb3"
repo = "https://github.com/mariohsouto/ProxSDP.jl.git"
version = "1.8.3"
version = "1.8.5"

[deps]
Arpack = "7d9fca2a-8960-54d3-9f78-7d1dccf2cb97"
DynamicPolynomials = "7c1d4256-1411-5781-91ec-d7bc3513ac07"
JuMP = "4076af6c-e467-56ae-b986-b466b2749572"
KrylovKit = "0b1a1467-8014-51b9-945f-bf0ae24f4b77"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568"
MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
SCS = "c946c3f1-0d1f-5ce8-9dea-7daa1f7e2d13"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
SumOfSquares = "4b9e565b-77fc-50a5-a571-1244f986bda1"
TimerOutputs = "a759f4b9-e2f1-59dc-863e-4aeb61b1ea8f"

[compat]
Expand All @@ -25,6 +21,7 @@ KrylovKit = "0.5.2"
MathOptInterface = "1"
TimerOutputs = "0.5.0"
julia = "1.6"
PrecompileTools = "1.1.0"

[extras]
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
Expand Down
2 changes: 1 addition & 1 deletion src/printing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ function print_header_1()
println("=======================================================================================")
println(" ProxSDP : Proximal Semidefinite Programming Solver ")
println(" (c) Mario Souto and Joaquim D. Garcia, 2020 ")
println(" v1.6.0 ")
println(" v1.8.5 ")
println("---------------------------------------------------------------------------------------")
end

Expand Down

2 comments on commit 280e5de

@mariohsouto
Copy link
Owner Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@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/83052

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 v1.8.5 -m "<description of version>" 280e5def734896a504e7a750b897b10f0f4e962d
git push origin v1.8.5

Also, note the warning: Version 1.8.5 skips over 1.8.3
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

Please sign in to comment.