Skip to content

Commit f15d97b

Browse files
committed
chore(main): release 0.4.0
1 parent d2872d2 commit f15d97b

File tree

4 files changed

+29
-3
lines changed

4 files changed

+29
-3
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.3.1"
2+
".": "0.4.0"
33
}

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Changelog
22

3+
## [0.4.0](https://github.com/jolars/sortedl1/compare/v0.3.1...v0.4.0) (2025-04-16)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* change super class to `LinearModel`
9+
* squeeze coefs into sklearn-compatible output
10+
11+
### Features
12+
13+
* add poisson, logistic, multinomial losses ([9858ae7](https://github.com/jolars/sortedl1/commit/9858ae7c0e52ba1f19a543e6343878f7b604aa29))
14+
* change super class to `LinearModel` ([1e5ca5d](https://github.com/jolars/sortedl1/commit/1e5ca5d4d7fa49847190844e3ab5121b166f8235))
15+
* squeeze coefs into sklearn-compatible output ([7f5bede](https://github.com/jolars/sortedl1/commit/7f5bede4f84f7a5171c466526305a94f4fa1f18d))
16+
17+
18+
### Reverts
19+
20+
* "ci: temporarily change pypi workflow to allow manual run" ([dbfb32c](https://github.com/jolars/sortedl1/commit/dbfb32c99d9864c2af06899ef6b9f83dbf6138df))
21+
22+
23+
### Documentation
24+
25+
* change name of returned value ([133a50c](https://github.com/jolars/sortedl1/commit/133a50c991435b15cbd5de2ea49b3f7a5e7b35ab))
26+
* change return value description ([682aa88](https://github.com/jolars/sortedl1/commit/682aa88ee2f2d717a6662a3e35c5bc885abc8b58))
27+
* improve description of `X` in `predict()` ([2b3d3fa](https://github.com/jolars/sortedl1/commit/2b3d3fa18192f7f284519fdbfa691ab5f5cf1ea8))
28+
329
## [0.3.1](https://github.com/jolars/sortedl1/compare/v0.3.0...v0.3.1) (2025-04-11)
430

531

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "sortedl1"
7-
version = "0.3.1"
7+
version = "0.4.0"
88
description = "Sorted L-One Penalized Estimation"
99
readme = "README.md"
1010
maintainers = [{ name = "Johan Larsson", email = "[email protected]" }]

sortedl1/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
__all__ = ["Slope"]
66

7-
__version__ = "0.3.1"
7+
__version__ = "0.4.0"

0 commit comments

Comments
 (0)