Skip to content

Commit 2e1ae4e

Browse files
authored
Release v0.3.2. (#208)
1 parent 388a951 commit 2e1ae4e

File tree

6 files changed

+28
-15
lines changed

6 files changed

+28
-15
lines changed

CHANGES.rst

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,20 @@ chronological order. We follow `semantic versioning <https://semver.org/>`_ and
66
releases are available on `Anaconda.org <https://anaconda.org/gettsim/gettsim>`_.
77

88

9-
0.3.2 - 2020-06-xx
9+
0.3.2 - 2020-06-19
1010
------------------
1111

12-
* :gh:`206` fixes several bugs in `arbeitsl_geld_2` and related transfers, calculating
13-
them at the appropriate (household) level (:ghuser:`MaxBlesch`).
14-
* :gh:`202` fixes bugs that surfaced for negative incomes (:ghuser:`MaxBlesch`).
15-
* :gh:`200` adds a debug mode to gettsim and documents the feature
16-
(:ghuser:`tobiasraabe`).
17-
* :gh:`197` adds all functions which build the tax and transfer system to the
18-
documentation (:ghuser:`tobiasraabe`).
1912
* :gh:`196` adds docstring to `policy_for_date.py` and improves its interface
2013
(:ghuser:`MaxBlesch`).
14+
* :gh:`197` adds all functions which build the tax and transfer system to the
15+
documentation (:ghuser:`tobiasraabe`).
16+
* :gh:`200` adds a debug mode to gettsim and documents the feature
17+
(:ghuser:`tobiasraabe`).
18+
* :gh:`201` improves the calculation of ``hh_freib`` and renames it to
19+
``alleinerziehend_freib`` (:ghuser:`MaxBlesch`, :ghuser:`tobiasraabe`).
20+
* :gh:`202` fixes bugs that surfaced for negative incomes (:ghuser:`MaxBlesch`).
21+
* :gh:`206` fixes several bugs in `arbeitsl_geld_2` and related transfers, calculating
22+
them at the appropriate (household) level (:ghuser:`MaxBlesch`).
2123

2224
0.3.1 - 2020-06-05
2325
------------------

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
project = "GETTSIM"
1717
copyright = f"{dt.datetime.now().year}, GETTSIM team" # noqa: A001
1818
author = "GETTSIM team"
19-
release = "0.3.1"
19+
release = "0.3.2"
2020
version = ".".join(release.split(".")[:2])
2121

2222
# -- General configuration ---------------------------------------------------

docs/how-to-maintain.rst

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,27 @@ To release a new major or minor version of GETTSIM, do the following.
4747

4848
2. Once all PRs in a milestone are closed:
4949

50-
a. Update :ref:`changes` with all necessary information regarding the new release.
50+
a. Create a new branch and PR to do some changes.
5151

52-
b. Use ``bumpversion [major|minor|patch]`` to increment all version strings. For
52+
b. Update :ref:`changes` with all necessary information regarding the new release.
53+
54+
c. Use ``bumpversion [major|minor|patch]`` to increment all version strings. For
5355
example, to bump the version from ``0.1.x`` to ```0.2.0``, type
5456

5557
.. code-block:: bash
5658
5759
$ bumpversion minor
5860
59-
c. Merge it to the master branch and create a maintenance branch ``[major].[minor]``,
61+
d. Test whether the conda package can be built successfully. Go inside the root
62+
folder of the repository and type
63+
64+
.. code-block:: bash
65+
66+
conda build .
67+
68+
Fix all occurring issues.
69+
70+
e. Merge it to the master branch and create a maintenance branch ``[major].[minor]``,
6071
i.e., ``0.2`` in this example.
6172

6273
3. The following step assigns a version and documents the release on Github. Go to the

gettsim/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from gettsim.interface import compute_taxes_and_transfers # noqa: F401
88
from gettsim.pre_processing.policy_for_date import get_policies_for_date # noqa: F401
99

10-
__version__ = "0.3.1"
10+
__version__ = "0.3.2"
1111

1212
COUNTER_TEST_EXECUTIONS = itertools.count()
1313

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.3.1
2+
current_version = 0.3.2
33

44
[bumpversion:file:setup.py]
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
setup(
2121
name="gettsim",
22-
version="0.3.1",
22+
version="0.3.2",
2323
description=DESCRIPTION,
2424
long_description=DESCRIPTION + "\n\n" + README,
2525
long_description_content_type="text/x-rst",

0 commit comments

Comments
 (0)