Skip to content

Commit

Permalink
Prep for v0.5.8 (#320)
Browse files Browse the repository at this point in the history
  • Loading branch information
pulsipher authored Aug 28, 2023
1 parent a43a06c commit d8f571a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "InfiniteOpt"
uuid = "20393b10-9daf-11e9-18c9-8db751c92c57"
authors = ["Joshua Pulsipher and Weiqi Zhang"]
version = "0.5.7"
version = "0.5.8"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ can be installed by entering the following in the REPL.
```julia
julia> ]

(v1.8) pkg> add InfiniteOpt
(v1.9) pkg> add InfiniteOpt
```

## Documentation
Expand Down Expand Up @@ -83,7 +83,7 @@ citing it.
A pre-print version is freely available though [arXiv](https://arxiv.org/abs/2106.12689).

## Project Status
The package is tested against Julia `1.6` and `1.8` on Linux, Mac, and Windows.
The package is tested against Julia `1.6` and `1.9` on Linux, Mac, and Windows.

## Contributing
`InfiniteOpt` is being actively developed and suggestions or other forms of contribution are encouraged.
Expand Down
7 changes: 1 addition & 6 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@
A `JuMP` extension for expressing and solving infinite-dimensional optimization
problems.

!!! note
`InfiniteOpt v0.5` introduces general nonlinear modeling to `InfiniteOpt`!
Thus, the possibilities for applications is vast. Please see
[Nonlinear Expressions](@ref nlp_guide) for more information.

## What is InfiniteOpt?
`InfiniteOpt.jl` provides a general mathematical abstraction to express and solve
infinite-dimensional optimization problems (i.e., problems with decision
Expand Down Expand Up @@ -79,7 +74,7 @@ capabilities from JuliaCon 2021 (note that nonlinear support has since been adde
`InfiniteOpt.jl` is a registered `Julia` package and can be added simply by
inputting the following in the package manager:
```julia
(v1.8) pkg> add InfiniteOpt
(v1.9) pkg> add InfiniteOpt
```
Please visit our [Installation Guide](@ref) for more details and information
on how to get started.
Expand Down
12 changes: 6 additions & 6 deletions docs/src/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Julia terminal and enter the package manager:
```julia-repl
julia> ]
(v1.8) pkg>
(v1.9) pkg>
```

!!! tip
Expand All @@ -36,12 +36,12 @@ Use the `add` command in the package to manager to add the following packages:

For example, to install `Distributions` we would enter:
```julia-repl
(v1.8) pkg> add Distributions
(v1.9) pkg> add Distributions
```

Now let's install `InfiniteOpt`:
```julia-repl
(v1.8) pkg> add InfiniteOpt
(v1.9) pkg> add InfiniteOpt
```

!!! info
Expand All @@ -51,7 +51,7 @@ Now let's install `InfiniteOpt`:
Alternatively, we can install the current experimental version of
`InfiniteOpt` via:
```julia-repl
(v1.8) pkg> add https://github.com/infiniteopt/InfiniteOpt.jl
(v1.9) pkg> add https://github.com/infiniteopt/InfiniteOpt.jl
```

## Install Optimization Solvers
Expand All @@ -62,7 +62,7 @@ supported solvers and their corresponding Julia packages is provided in

For example, we can install Ipopt which is an open-source nonlinear solver:
```julia-repl
(v1.8) pkg> add Ipopt
(v1.9) pkg> add Ipopt
```
Now Ipopt can be used as the optimizer (solver) for an infinite model by running:
```julia-repl
Expand All @@ -86,7 +86,7 @@ form `vX.Y.Z`. You can check which versions you have installed with:
```julia-repl
julia> ]
(v1.8) pkg> status
(v1.9) pkg> status
```
This should almost always be the most-recent release. You can check the releases
of a package by going to the relevant GitHub page, and navigating to the
Expand Down

2 comments on commit d8f571a

@pulsipher
Copy link
Collaborator 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/90392

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

Please sign in to comment.