From ab7e56a4183abd10e001ca30b2fbd9dc996c26f0 Mon Sep 17 00:00:00 2001 From: Joshua Date: Wed, 8 Apr 2020 13:19:23 -0500 Subject: [PATCH] v0.1.1 prep --- Project.toml | 2 +- README.md | 8 ++++---- docs/src/index.md | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Project.toml b/Project.toml index 805bf3282..cddb8eebc 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "InfiniteOpt" uuid = "20393b10-9daf-11e9-18c9-8db751c92c57" authors = ["Joshua Pulsipher and Weiqi Zhang"] -version = "0.1.0" +version = "0.1.1" [deps] JuMP = "4076af6c-e467-56ae-b986-b466b2749572" diff --git a/README.md b/README.md index 3e5247a65..216e8ce91 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ making it a powerful and convenient tool for advanced users. | **Documentation** | **Build Status** | |:-------------------------------------------------------------------------------:|:-----------------------------------------------------------------------------------------------:| -| [![](https://img.shields.io/badge/docs-stable-blue.svg)](https://pulsipher.github.io/InfiniteOpt.jl/stable) | [![Build Status](https://api.travis-ci.com/pulsipher/InfiniteOpt.jl.svg?branch=v0.1.0)](https://travis-ci.com/pulsipher/InfiniteOpt.jl) [![Build Status2](https://ci.appveyor.com/api/projects/status/p3srfp3uuvchfg3j/branch/v0.1.0?svg=true)](https://ci.appveyor.com/project/pulsipher/InfiniteOpt-jl) [![codecov.io](https://codecov.io/github/pulsipher/InfiniteOpt.jl/coverage.svg?branch=release_prep)](https://codecov.io/github/pulsipher/InfiniteOpt.jl?branch=release_prep) | +| [![](https://img.shields.io/badge/docs-stable-blue.svg)](https://pulsipher.github.io/InfiniteOpt.jl/stable) | [![Build Status](https://api.travis-ci.com/pulsipher/InfiniteOpt.jl.svg?branch=v0.1.1)](https://travis-ci.com/pulsipher/InfiniteOpt.jl) [![Build Status2](https://ci.appveyor.com/api/projects/status/p3srfp3uuvchfg3j/branch/v0.1.1?svg=true)](https://ci.appveyor.com/project/pulsipher/InfiniteOpt-jl) [![codecov.io](https://codecov.io/github/pulsipher/InfiniteOpt.jl/coverage.svg?branch=release_prep)](https://codecov.io/github/pulsipher/InfiniteOpt.jl?branch=release_prep) | | [![](https://img.shields.io/badge/docs-dev-blue.svg)](https://pulsipher.github.io/InfiniteOpt.jl/dev) | [![Build Status](https://travis-ci.com/pulsipher/InfiniteOpt.jl.svg?branch=master)](https://travis-ci.com/pulsipher/InfiniteOpt.jl) [![Build Status2](https://ci.appveyor.com/api/projects/status/github/pulsipher/InfiniteOpt.jl?branch=master&svg=true)](https://ci.appveyor.com/project/pulsipher/InfiniteOpt-jl) [![codecov.io](https://codecov.io/github/pulsipher/InfiniteOpt.jl/coverage.svg?branch=master)](https://codecov.io/github/pulsipher/InfiniteOpt.jl?branch=master) | Its capabilities include: @@ -21,7 +21,7 @@ Its capabilities include: - Direct support of infinite, point, and hold variables - Symbolic measure (integral) expression - Infinite/finite constraint definition -- Ordinary differential equation support (coming soon) +- Ordinary differential equation support (coming soon with `v0.2.0`) - Automated model transcription/reformulation and solution - Compatible with all [JuMP-supported solvers](https://www.juliaopt.org/JuMP.jl/dev/installation/#Getting-Solvers-1) - Readily extendable to accommodate user defined abstractions and solution techniques. @@ -50,7 +50,7 @@ Comments, suggestions and improvements are welcome and appreciated. following in the package manager. ```julia -(v1.3) pkg> add InfiniteOpt +(v1.4) pkg> add InfiniteOpt ``` ## Documentation @@ -60,7 +60,7 @@ Please visit our [documentation pages](https://pulsipher.github.io/InfiniteOpt.j tutorials, examples, and more! ## Project Status -The package is tested against Julia `1.0`, `1.1`, `1.2`, `1.3`, and nightly on Linux, macOS, and Windows. +The package is tested against Julia `1.0`, `1.1`, `1.2`, `1.3`, `1.4`, and nightly on Linux, macOS, and Windows. ## Contributing `InfiniteOpt` is being actively developed and suggestions or other forms of contribution are encouraged. diff --git a/docs/src/index.md b/docs/src/index.md index fda009dc1..268d177ba 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -17,7 +17,7 @@ include: - Direct support of infinite, point, and hold variables - Symbolic measure (integral) expression - Infinite/finite constraint definition -- Ordinary differential equation support (coming soon) +- Ordinary differential equation support (coming soon with `v0.2.0`) - Automated model transcription/reformulation and solution - Compatible with all [JuMP-supported solvers](https://www.juliaopt.org/JuMP.jl/dev/installation/#Getting-Solvers-1) - Readily extendable to accommodate user defined abstractions and solution techniques. @@ -31,7 +31,7 @@ include: `InfiniteOpt.jl` is a registered `Julia` and can be added simply by inputting the following in the package manager: ```julia -(v1.3) pkg> add InfiniteOpt +(v1.4) pkg> add InfiniteOpt ``` Please visit our [Installation Guide](@ref) for more details and information on how to get started. @@ -40,7 +40,7 @@ Moreover, `InfiniteOpt` under constant develop with new features being added oft Thus, the latest pre-release experimental version can be obtained via the following command: ```julia -(v1.3) pkg> add https://github.com/pulsipher/InfiniteOpt.jl +(v1.4) pkg> add https://github.com/pulsipher/InfiniteOpt.jl ``` ## How to Use the Documentation