Skip to content

Commit 3d50f66

Browse files
committed
Update changelog for 4.0.1 (#904)
* Fix twine import error from towncrier * Update changelog for 4.0.1
1 parent 62f3c67 commit 3d50f66

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

changelog/890.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/896.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/changelog.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,16 @@ schemes recommended by the Python Packaging Authority.
1212
1313
.. towncrier release notes start
1414
15+
Twine 4.0.1 (2022-06-01)
16+
------------------------
17+
18+
Bugfixes
19+
^^^^^^^^
20+
21+
- Improve logging when keyring fails. (`#890 <https://github.com/pypa/twine/issues/890>`_)
22+
- Reconfgure root logger to show all log messages. (`#896 <https://github.com/pypa/twine/issues/896>`_)
23+
24+
1525
Twine 4.0.0 (2022-03-31)
1626
------------------------
1727

tox.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ commands =
8383
python -c 'with open("mypy/index.txt") as f: print(f.read())'
8484

8585
[testenv:changelog]
86-
skip_install = True
8786
basepython = python3
8887
deps =
8988
towncrier

twine/auth.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def __init__(self, config: utils.RepositoryConfig, input: CredentialInput) -> No
2828
def choose(cls, interactive: bool) -> Type["Resolver"]:
2929
return cls if interactive else Private
3030

31-
@property # type: ignore # https://github.com/python/mypy/issues/1362
31+
@property
3232
@functools.lru_cache()
3333
def username(self) -> Optional[str]:
3434
return utils.get_userpass_value(
@@ -38,7 +38,7 @@ def username(self) -> Optional[str]:
3838
prompt_strategy=self.username_from_keyring_or_prompt,
3939
)
4040

41-
@property # type: ignore # https://github.com/python/mypy/issues/1362
41+
@property
4242
@functools.lru_cache()
4343
def password(self) -> Optional[str]:
4444
return utils.get_userpass_value(

0 commit comments

Comments
 (0)