Skip to content

Commit

Permalink
release 3.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
vagmcs committed Nov 13, 2024
1 parent 33dd590 commit 67a9580
Show file tree
Hide file tree
Showing 26 changed files with 37 additions and 37 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,16 @@ release: build
@gh release create v"${PROJECT_VERSION}" -F "docs/release_notes/${PROJECT_VERSION}.md" \
./core/target/scala-2.12/optimus_2.12-${PROJECT_VERSION}.jar \
./core/target/scala-2.13/optimus_2.13-${PROJECT_VERSION}.jar \
./core/target/scala-3.1.3/optimus_3-${PROJECT_VERSION}.jar \
./core/target/scala-3.3.4/optimus_3-${PROJECT_VERSION}.jar \
./solver-oj/target/scala-2.12/optimus-solver-oj_2.12-${PROJECT_VERSION}.jar \
./solver-oj/target/scala-2.13/optimus-solver-oj_2.13-${PROJECT_VERSION}.jar \
./solver-oj/target/scala-3.1.3/optimus-solver-oj_3-${PROJECT_VERSION}.jar \
./solver-oj/target/scala-3.3.4/optimus-solver-oj_3-${PROJECT_VERSION}.jar \
./solver-lp/target/scala-2.12/optimus-solver-lp_2.12-${PROJECT_VERSION}.jar \
./solver-lp/target/scala-2.13/optimus-solver-lp_2.13-${PROJECT_VERSION}.jar \
./solver-lp/target/scala-3.1.3/optimus-solver-lp_3-${PROJECT_VERSION}.jar \
./solver-lp/target/scala-3.3.4/optimus-solver-lp_3-${PROJECT_VERSION}.jar \
./solver-gurobi/target/scala-2.12/optimus-solver-gurobi_2.12-${PROJECT_VERSION}.jar \
./solver-gurobi/target/scala-2.13/optimus-solver-gurobi_2.13-${PROJECT_VERSION}.jar \
./solver-gurobi/target/scala-3.1.3/optimus-solver-gurobi_3-${PROJECT_VERSION}.jar \
./solver-gurobi/target/scala-3.3.4/optimus-solver-gurobi_3-${PROJECT_VERSION}.jar \
./solver-mosek/target/scala-2.12/optimus-solver-mosek_2.12-${PROJECT_VERSION}.jar \
./solver-mosek/target/scala-2.13/optimus-solver-mosek_2.13-${PROJECT_VERSION}.jar \
./solver-mosek/target/scala-3.1.3/optimus-solver-mosek_3-${PROJECT_VERSION}.jar
./solver-mosek/target/scala-3.3.4/optimus-solver-mosek_3-${PROJECT_VERSION}.jar
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,23 +33,23 @@ This program comes with ABSOLUTELY NO WARRANTY. This is free software, and you a

## How to get Optimus

Optimus is published to Maven Central for Scala 2.12, 2.13 and 3.1.3!
Optimus is published to Maven Central for Scala 2.12, 2.13 and 3.3.4!

Add the following dependencies to your SBT build file in order to get started:

```scala
libraryDependencies ++= Seq(
"com.github.vagmcs" %% "optimus" % "3.4.3",
"com.github.vagmcs" %% "optimus-solver-oj" % "3.4.3",
"com.github.vagmcs" %% "optimus-solver-lp" % "3.4.3"
"com.github.vagmcs" %% "optimus" % "3.4.4",
"com.github.vagmcs" %% "optimus-solver-oj" % "3.4.4",
"com.github.vagmcs" %% "optimus-solver-lp" % "3.4.4"
)
```

Optionally, you can also add the following extra dependencies for proprietary solvers:

```scala
"com.github.vagmcs" %% "optimus-solver-gurobi" % "3.4.3"
"com.github.vagmcs" %% "optimus-solver-mosek" % "3.4.3"
"com.github.vagmcs" %% "optimus-solver-gurobi" % "3.4.4"
"com.github.vagmcs" %% "optimus-solver-mosek" % "3.4.4"
```

For more information see [Building and Linking](docs/building_and_linking.md)
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/scala/optimus/algebra/AlgebraOps.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.algebra
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/scala/optimus/algebra/Constraint.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.algebra
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.algebra
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/scala/optimus/algebra/Expression.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.algebra
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/scala/optimus/algebra/ExpressionType.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.algebra
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/scala/optimus/algebra/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/scala/optimus/common/Measure.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.common
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/scala/optimus/optimization/MPModel.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.optimization
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/scala/optimus/optimization/MPSolver.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.optimization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.optimization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.optimization.enums
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.optimization.enums
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.optimization.enums
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.optimization.model
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/scala/optimus/optimization/model/MPVar.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.optimization.model
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.optimization.model
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.optimization
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/scala/optimus/optimization/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus
Expand Down
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.17")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.11.3")

addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")

addSbtPlugin("com.scalapenos" % "sbt-prompt" % "1.0.2")

addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0")

addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.6.0")

addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.0")

addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")

addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.4")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.optimization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.optimization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.optimization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* \///// \/// \///// \/// \/// \/// \/// \///////// \//////////
*
* The mathematical programming library for Scala.
*
*
*/

package optimus.optimization
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ThisBuild / version := "3.4.4-SNAPSHOT"
ThisBuild / version := "3.4.4"

0 comments on commit 67a9580

Please sign in to comment.