Skip to content

Commit 646b17b

Browse files
release: 0.7.0 (#166)
1 parent f68773c commit 646b17b

File tree

2 files changed

+27
-11
lines changed

2 files changed

+27
-11
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
## [Unreleased]
44

5+
## [0.7.0] - 2025-04-25
6+
7+
### Added
8+
9+
* add(test): add mutmut pkg by @shenxiangzhuang in [#164](https://github.com/shenxiangzhuang/mppt/pull/164)
10+
* add(doc): sphinx-immaterial theme by @shenxiangzhuang in [#165](https://github.com/shenxiangzhuang/mppt/pull/165)
11+
12+
### Changed
13+
14+
* chore(linting): update Ruff lint configuration by @shenxiangzhuang in [#157](https://github.com/shenxiangzhuang/mppt/pull/157)
15+
* pkg: remove lock file by @shenxiangzhuang in [#158](https://github.com/shenxiangzhuang/mppt/pull/158)
16+
* chore: remove dev container by @shenxiangzhuang in [#161](https://github.com/shenxiangzhuang/mppt/pull/161)
17+
18+
### CI/CD
19+
20+
* ci: uv cache prune by @shenxiangzhuang in [#150](https://github.com/shenxiangzhuang/mppt/pull/150)
21+
* ci(publish): use pypi trusted publisher by @shenxiangzhuang in [#162](https://github.com/shenxiangzhuang/mppt/pull/162)
22+
523
## [0.6.0] - 2025-03-06
624

725
### Added

pyproject.toml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
[project]
22
name = "mppt"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
description = "A Modern Python Package Template"
5-
authors = [
6-
{name = "Xiangzhuang Shen", email = "[email protected]"},
7-
]
8-
license = {text = "MIT"}
5+
authors = [{ name = "Xiangzhuang Shen", email = "[email protected]" }]
6+
license = { text = "MIT" }
97
readme = "README.md"
108

119

12-
classifiers=[
10+
classifiers = [
1311
"Development Status :: 3 - Alpha",
1412
"Intended Audience :: Science/Research",
1513
"Intended Audience :: Developers",
@@ -124,11 +122,11 @@ target-version = "py39"
124122

125123
[tool.ruff.lint]
126124
select = [
127-
'F', # Pyflakes
128-
'E', # pycodestyle (Error)
129-
'I', # isort
130-
'D', # pydocstyle
131-
'UP', # pyupgrade
125+
'F', # Pyflakes
126+
'E', # pycodestyle (Error)
127+
'I', # isort
128+
'D', # pydocstyle
129+
'UP', # pyupgrade
132130
]
133131
pydocstyle = { convention = "google" }
134132

0 commit comments

Comments
 (0)