Skip to content

Commit 389f670

Browse files
committed
Get ready for release 2.0.0
1 parent c5376a0 commit 389f670

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

Makefile

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ all: develop
2424
develop:
2525
$(PIP) install -e .$(PIP_INSTALL_OPTS)
2626

27-
#: Install timed_threads
27+
dist:
28+
$(PYTHON) -m build --sdist
29+
30+
#: Install development version of timed_threads
2831
install:
2932
$(PYTHON) -m pip install -e .
3033

@@ -46,7 +49,11 @@ pytest:
4649
rmChangeLog:
4750
$(RM) ChangeLog || true
4851

52+
#: Create ChangeLog from version control without corrections
53+
ChangeLog-without-corrections:
54+
git log --pretty --numstat --summary | $(GIT2CL) >ChangeLog
55+
4956
#: Create a ChangeLog from git via git log and git2cl
5057
ChangeLog: rmChangeLog
51-
git log --pretty --numstat --summary | $(GIT2CL) >$@
52-
patch -p0 ChangeLog < ChangeLog-spell-corrected.diff
58+
ChangeLog-without-corrections
59+
patch ChangeLog < ChangeLog-spell-corrected.diff

timed_threads/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# well as importing into Python. That's why there is no
55
# space around "=" below.
66
# fmt: off
7-
__version__="2.0.0dev0" # noqa
7+
__version__="2.0.0" # noqa

0 commit comments

Comments
 (0)