Skip to content

Commit

Permalink
v0.4.0 (#651)
Browse files Browse the repository at this point in the history
* v0.4.0

* Update Project.toml
  • Loading branch information
guimarqu authored Mar 31, 2022
1 parent 8609ff0 commit 5e1a794
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 14 deletions.
15 changes: 4 additions & 11 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
# Coluna 0.3.13 Release notes

## New features

- none
# Coluna 0.4.0 Release notes

Major update of the MOI wrapper and various bugfixes.
## Changes

### Pricing callback API
Expand All @@ -19,13 +16,9 @@ Moreover, it's not possible to retrieve the column generation stage from the cal

## Dep updates

- BlockDecomposition -> v1.5
- MOI -> v0.9


## Deprecations
- BlockDecomposition -> v1.7
- MOI -> 1

- none

## Removed

Expand Down
5 changes: 3 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Coluna"
uuid = "88b4ec78-b192-11e8-04aa-4d367dd96a64"
authors = ["François Vanderbeck", "Guillaume Marques", "Vitor Nesello", "Ruslan Sadykov"]
version = "0.3.12"
version = "0.4.0"

[deps]
BlockDecomposition = "6cde8614-403a-11e9-12f1-c10d0f0caca0"
Expand All @@ -20,7 +20,8 @@ TimerOutputs = "a759f4b9-e2f1-59dc-863e-4aeb61b1ea8f"
[compat]
BlockDecomposition = "1.7"
DataStructures = "0.17, 0.18"
MathOptInterface = "~0.10, 1.0"
DynamicSparseArrays = "0.5.3"
MathOptInterface = "0.10, 1"
Parameters = "0.12"
TimerOutputs = "0.5"
julia = "1.6"
Expand Down
2 changes: 1 addition & 1 deletion test/MathOptInterface/MOI_wrapper.jl
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function test_runtests()
# releases of MOI that add new tests. Don't let this number get too far
# behind the current MOI release though! You should periodically check
# for new tests in order to fix bugs and implement new features.
exclude_tests_after = v"0.10.5",
exclude_tests_after = v"1.1.2",
)
return
end
Expand Down

2 comments on commit 5e1a794

@guimarqu
Copy link
Contributor 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/57695

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.4.0 -m "<description of version>" 5e1a79433d7506041c289253fe3adadf9ebfb324
git push origin v0.4.0

Please sign in to comment.