File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to the pyprintf project will be documented in this file.
4
4
5
+ ## [ 0.0.7] - 2025-04-18
6
+
7
+ * Normalized scientific notation format (` e ` , ` E ` ) to align with C++ conventions.
8
+
5
9
## [ 0.0.6] - 2025-04-18
6
10
7
11
* Resolved an issue where the ` E ` (exponential) format specifier was not recognized by the parser.
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ maintainers = [
36
36
name = " pyprintf"
37
37
readme = " README.md"
38
38
requires-python = " >=3.10"
39
- version = " 0.0.6 "
39
+ version = " 0.0.7 "
40
40
41
41
[project .urls ]
42
42
"Bug Tracker" = " https://github.com/playfulsparkle/pyprintf/issues"
Original file line number Diff line number Diff line change 9
9
from .core import sprintf , vsprintf , config
10
10
11
11
__all__ = ["sprintf" , "vsprintf" , "config" ]
12
- __version__ = "0.0.6 "
12
+ __version__ = "0.0.7 "
You can’t perform that action at this time.
0 commit comments