Skip to content

Commit 0f73095

Browse files
[0.2.x] Bumped version for 0.2.1 release. Update pyproject.toml
1 parent 9822c6e commit 0f73095

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

docs/internals/changelog.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,15 @@ section of releases.
1616

1717
You can retrieve all deprecations :doc:`here </internals/deprecations>`
1818

19+
Socon 0.2.1
20+
===========
21+
22+
Bug Fixes:
23+
----------
24+
25+
* `#42 <https://github.com/socon-dev/socon/issues/42>`_: Fixed by saving the subcommand and calling
26+
the right method to set the config attribute.
27+
1928
Socon 0.2.0
2029
===========
2130

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ homepage = "https://socon.readthedocs.io/en/latest/"
3838
repository = "https://github.com/socon-dev/socon"
3939
changelog = "https://github.com/socon-dev/socon/blob/master/docs/internals/changelog.txt"
4040

41-
[tool.setuptools]
42-
packages = ["socon"]
41+
[tool.setuptools.packages.find]
42+
include = ["socon*"]
4343

4444
[tool.setuptools.dynamic]
4545
version = {attr = "socon.__version__"}

socon/__init__.py

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

44
from socon.utils.version import get_version
55

6-
VERSION = (0, 2, 0, "final", 0)
6+
VERSION = (0, 2, 1, "final", 0)
77

88
__version__ = get_version(VERSION)
99

0 commit comments

Comments
 (0)