Skip to content

Commit ec1df16

Browse files
committed
Release notes for 0.4.0
1 parent c99cfcb commit ec1df16

File tree

4 files changed

+22
-12
lines changed

4 files changed

+22
-12
lines changed

CHANGES.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Changes
22
=======
33

4+
0.4.0 (unreleased)
5+
------------------
6+
7+
* Dropped support for Python 3.8 and lower, added support for Python 3.11 and
8+
higher.
9+
10+
* Added a ``digit_group_separator`` parameter to ``Price.fromstring()``.
11+
412
0.3.4 (2020-11-25)
513
------------------
614

pyproject.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[tool.bumpversion]
2+
current_version = "0.3.4"
3+
commit = true
4+
tag = true
5+
tag_name = "{new_version}"
6+
7+
[[tool.bumpversion.files]]
8+
filename = 'CHANGES.rst'
9+
search = "\\(unreleased\\)$"
10+
replace = "({now:%Y-%m-%d})"
11+
regex = true
12+
13+
[[tool.bumpversion.files]]
14+
filename = "setup.py"

setup.cfg

Lines changed: 0 additions & 10 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
31
from setuptools import find_packages, setup
42

53
setup(

0 commit comments

Comments
 (0)