Skip to content

Commit

Permalink
Finding the artifact path on initialization improves relocatability (#…
Browse files Browse the repository at this point in the history
…134)

* Finding the artifact path on initialization improves relocatability

* Bump version to 0.14.1
  • Loading branch information
ven-k authored Feb 1, 2022
1 parent a436e1a commit 7e903b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ECOS"
uuid = "e2685f51-7e38-5353-a97d-a921fd2c8199"
repo = "https://github.com/jump-dev/ECOS.jl.git"
version = "0.14.0"
version = "0.14.1"

[deps]
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
Expand Down
2 changes: 1 addition & 1 deletion src/ECOS.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
module ECOS

import ECOS_jll
const ecos = ECOS_jll.libecos

using CEnum

Expand All @@ -35,6 +34,7 @@ end
include("MOI_wrapper/MOI_wrapper.jl")

function __init__()
global ecos = ECOS_jll.libecos
libecos_version = VersionNumber(unsafe_string(ECOS_ver()))
if libecos_version != v"2.0.8"
error(
Expand Down

2 comments on commit 7e903b4

@odow
Copy link
Member

@odow odow commented on 7e903b4 Feb 1, 2022

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/53642

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.14.1 -m "<description of version>" 7e903b47fd00535dcfc64cdd96290442e71dd469
git push origin v0.14.1

Please sign in to comment.