Skip to content

Commit

Permalink
Add support for MOI 0.10 and drop Julia < 1.6 (#18)
Browse files Browse the repository at this point in the history
* Add support for MOI 0.10 and drop Julia < 1.6

* Bump version

* Update docs
  • Loading branch information
devmotion authored Dec 21, 2021
1 parent ada5933 commit b1dba1c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
version:
- '1.0'
- '1.6'
- '1'
- 'nightly'
os:
Expand Down
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ExactOptimalTransport"
uuid = "24df6009-d856-477c-ac5c-91f668376b31"
authors = ["JuliaOptimalTransport"]
version = "0.1.2"
version = "0.2.0"

[deps]
Distances = "b4f34e82-e78d-54a5-968a-f98e89d6e8f7"
Expand All @@ -18,11 +18,11 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
Distances = "0.9.0, 0.10"
Distributions = "0.24, 0.25"
FillArrays = "0.12"
MathOptInterface = "0.9"
MathOptInterface = "0.9, 0.10"
PDMats = "0.10, 0.11"
QuadGK = "2"
StatsBase = "0.33.8"
julia = "1"
julia = "1.6"

[extras]
HCubature = "19dc6840-f33b-545b-b366-655c7e3ffd49"
Expand Down
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ ExactOptimalTransport = "24df6009-d856-477c-ac5c-91f668376b31"

[compat]
Documenter = "0.27"
ExactOptimalTransport = "0.1"
ExactOptimalTransport = "0.2"

2 comments on commit b1dba1c

@devmotion
Copy link
Member 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/50971

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

Please sign in to comment.