Skip to content

Commit 0baf2b4

Browse files
bumped version number to 0.0.7, C like e, E format specifier normalization
1 parent 63f1c9b commit 0baf2b4

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

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

33
All notable changes to the pyprintf project will be documented in this file.
44

5+
## [0.0.7] - 2025-04-18
6+
7+
* Normalized scientific notation format (`e`, `E`) to align with C++ conventions.
8+
59
## [0.0.6] - 2025-04-18
610

711
* Resolved an issue where the `E` (exponential) format specifier was not recognized by the parser.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ maintainers = [
3636
name = "pyprintf"
3737
readme = "README.md"
3838
requires-python = ">=3.10"
39-
version = "0.0.6"
39+
version = "0.0.7"
4040

4141
[project.urls]
4242
"Bug Tracker" = "https://github.com/playfulsparkle/pyprintf/issues"

src/pyprintf/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
from .core import sprintf, vsprintf, config
1010

1111
__all__ = ["sprintf", "vsprintf", "config"]
12-
__version__ = "0.0.6"
12+
__version__ = "0.0.7"

0 commit comments

Comments
 (0)