Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep for v1.20.1 #2288

Merged
merged 6 commits into from
Sep 24, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "MathOptInterface"
uuid = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
version = "1.20.0"
version = "1.20.1"

[deps]
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
Expand Down
20 changes: 20 additions & 0 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v1.20.1 (September 22, 2023)
odow marked this conversation as resolved.
Show resolved Hide resolved

### Fixed

- Removed incorrect `kwargs` in some `copy_to` methods (#2272)
- Fixed [`ConstraintDualStart`](@ref) for [`Bridges.Constraint.SplitIntervalBridge`](@ref)
(#2275)
- Fixed `MethodError` when trying to modify a variable objective (#2278)
odow marked this conversation as resolved.
Show resolved Hide resolved

### Other

- Added MathOptSetDistances to `solver-tests.yml` (#2265)
- Updated Documenter (#2266)
- Fixed various JET errors (#2267) (#2269) (#2270) (#2271) (#2276) (#2277)
odow marked this conversation as resolved.
Show resolved Hide resolved
- Various style improvements
- Replaced `using Package` with `import Package` where possible (#2274)
- Removed `Utilities.EMPTYSTRING` (#2283)
- Removed unecessary `const` acronyms in `Utilities` (#2280) (#2281)

Check failure on line 27 in docs/src/changelog.md

View workflow job for this annotation

GitHub Actions / vale

[vale] docs/src/changelog.md#L27

[Vale.Spelling] Did you really mean 'unecessary'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'unecessary'?", "location": {"path": "docs/src/changelog.md", "range": {"start": {"line": 27, "column": 14}}}, "severity": "ERROR"}
odow marked this conversation as resolved.
Show resolved Hide resolved
- Removed invalid and unused method (#2286)
odow marked this conversation as resolved.
Show resolved Hide resolved

## v1.20.0 (September 7, 2023)

### Added
Expand Down
Loading