Skip to content

Commit

Permalink
Add changelog for 1.0.1
Browse files Browse the repository at this point in the history
Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>
  • Loading branch information
gaborbernat committed Nov 5, 2021
1 parent 03e16c3 commit 2674c7e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
v1.0.0 (2021-11-04)
v1.0.1 (2021-11-05)
===================
* Improve the readme and add test (100% coverage).

v1.0.0 (2021-11-04)
===================
* First version
3 changes: 2 additions & 1 deletion tests/test_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ def test_info_missing(tmp_path: Path, option_simple: Options, make_dist: MakeDis
pkg = packages[0]
assert pkg.info == {"releases": {}}
current = datetime.now(timezone.utc)
assert current < pkg.last_release_at
last_release_at = pkg.last_release_at
assert current <= last_release_at


def test_info_pypi_server_invalid_version(tmp_path: Path, option_simple: Options, make_dist: MakeDist) -> None:
Expand Down

0 comments on commit 2674c7e

Please sign in to comment.