Skip to content

Commit

Permalink
Add support for v22.1.1 (#416)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Jan 22, 2023
1 parent ae25b29 commit 6ea06b9
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 = "CPLEX"
uuid = "a076750e-1247-5638-91d2-ce28b192dca0"
repo = "https://github.com/jump-dev/CPLEX.jl"
version = "0.9.4"
version = "0.9.5"

[deps]
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
Expand Down
2 changes: 1 addition & 1 deletion src/CPLEX.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ if _CPLEX_VERSION == v"12.10.0"
elseif _CPLEX_VERSION == v"20.1.0"
include("gen2010/libcpx_common.jl")
include("gen2010/libcpx_api.jl")
elseif _CPLEX_VERSION == v"22.1.0"
elseif _CPLEX_VERSION in (v"22.1.0", v"22.1.1")
include("gen2210/ctypes.jl")
include("gen2210/libcpx_common.jl")
include("gen2210/libcpx_api.jl")
Expand Down

2 comments on commit 6ea06b9

@odow
Copy link
Member Author

@odow odow commented on 6ea06b9 Jan 22, 2023

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

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.9.5 -m "<description of version>" 6ea06b980028ec7749e998c39c1b9e0b38e1fb0f
git push origin v0.9.5

Please sign in to comment.