Skip to content

Commit

Permalink
Update README regarding obsolete methods removal
Browse files Browse the repository at this point in the history
  • Loading branch information
eduherminio committed Nov 19, 2023
1 parent acaedbd commit be798e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ Some cool repositories that add their own abstractions/customizations on top of
- [RachaelBooth/AdventOfCode2022](https://github.com/RachaelBooth/AdventOfCode2022/): `BaseSolver<U>` and `BaseSolver<U, V>` wrappers around `BaseProblem` to have `U Solve1()` and `V Solve2` methods.
- [Morphix84/AdventOfCode](https://github.com/Morphix84/AdventOfCode/): input fetching and same-repository-multi-year support.

## `v1` to `v2` migration
## `v1` to `v2+` migration

Methods that accept an instance of `SolverConfiguration` are deprecated in `v2` and can expected to be removed in the next major version.
Methods that accept an instance of `SolverConfiguration` were deprecated in `v2` and removed in `v3`.

They have been replaced by methods that accept `Action<SolverConfiguration>` overrides.

Expand All @@ -108,7 +108,7 @@ await Solver.SolveAll(new SolverConfiguration
});
```

`v2`:
`v2+`:

```csharp
await Solver.SolveAll(options =>
Expand Down

0 comments on commit be798e9

Please sign in to comment.