File tree Expand file tree Collapse file tree 2 files changed +9
-13
lines changed Expand file tree Collapse file tree 2 files changed +9
-13
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3- ## Unreleased - 💥 More breaking changes and new algorithms 🏭
3+ ## 0.4.0 - 🏭💥 New algorithms and more breaking changes
44
55- GH action to mark issues as stale
66 [ PR #201 ] ( https://github.com/appliedAI-Initiative/pyDVL/pull/201 )
3131 [ PR #240 ] ( https://github.com/appliedAI-Initiative/pyDVL/pull/240 )
3232- Fixes bug in ray initialization in ` RayParallelBackend ` class
3333 [ PR #239 ] ( https://github.com/appliedAI-Initiative/pyDVL/pull/239 )
34- - Improves Least Core methods by solving an egalitarian quadratic program
35- to find a fair distribution of data value that satisfies the constraints
36- given the least core value found by solving the least core linear program,
37- adds cvxpy as a dependency and uses it instead of scipy to solve these programs.
34+ - Implements "Egalitarian Least Core", adds [ cvxpy] ( https://www.cvxpy.org/ ) as a
35+ dependency and uses it instead of scipy as optimizer
3836 [ PR #243 ] ( https://github.com/appliedAI-Initiative/pyDVL/pull/243 )
3937
4038## 0.3.0 - 💥 Breaking changes
Original file line number Diff line number Diff line change @@ -263,12 +263,10 @@ runs](#skipping-ci-runs)).
263263
264264### Skipping CI runs
265265
266- You sometimes would like to skip CI for certain commits (e.g. updating the readme).
267- In order to do that you can simply prefix the commit message with ` [skip ci] ` .
268-
269- - Other strings, like ` [ci skip] ` are allowed, but we prefer ` [skip ci] ` .
270- - The string doesn't have to be at the beginning of the commit message, but we prefer doing it
271- that way because it makes it immediately apparent when looking at commits in a PR.
266+ One sometimes would like to skip CI for certain commits (e.g. updating the
267+ readme). In order to do this, simply prefix the commit message with ` [skip ci] ` .
268+ The string can be anywhere, but adding it to the beginning of the commit message
269+ makes it more evident when looking at commits in a PR.
272270
273271Refer to the official [ GitHub documentation] ( https://docs.github.com/en/actions/managing-workflow-runs/skipping-workflow-runs )
274272for more information.
@@ -290,13 +288,13 @@ Then, a new release can be created using the script
290288part):
291289
292290``` shell script
293- ./scripts /release-version.sh 0.1.6
291+ build_scripts /release-version.sh 0.1.6
294292```
295293
296294To find out how to use the script, pass the ` -h ` or ` --help ` flags:
297295
298296``` shell script
299- ./ build_scripts/release-version.sh --help
297+ build_scripts/release-version.sh --help
300298```
301299
302300If running in interactive mode (without ` -y|--yes ` ), the script will output a
You can’t perform that action at this time.
0 commit comments