worklogs 0.3.2__tar.gz → 0.3.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: worklogs
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: Local markdown worklog helpers for developer workflows.
5
5
  Project-URL: Homepage, https://github.com/alik-git/worklogs
6
6
  Project-URL: Repository, https://github.com/alik-git/worklogs
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "worklogs"
7
- version = "0.3.2"
7
+ version = "0.3.3"
8
8
  description = "Local markdown worklog helpers for developer workflows."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -2,6 +2,6 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- __version__ = "0.3.2"
5
+ __version__ = "0.3.3"
6
6
 
7
7
  __all__ = ["__version__"]
@@ -168,10 +168,10 @@ def main(argv: Sequence[str] | None = None) -> int:
168
168
  if args.command == "find":
169
169
  return _run_find(args)
170
170
  except WorklogsError as error:
171
- print(f"worklogs: error: {error}", file=sys.stderr)
171
+ LOGGER.error("%s", error)
172
172
  return 2
173
173
 
174
- print(f"worklogs: error: unknown command: {args.command}", file=sys.stderr)
174
+ LOGGER.error("unknown command: %s", args.command)
175
175
  return 2
176
176
 
177
177
 
@@ -28,7 +28,7 @@ if TYPE_CHECKING:
28
28
 
29
29
  def test_version_is_exposed() -> None:
30
30
  """Package exposes its current version."""
31
- assert worklogs.__version__ == "0.3.2"
31
+ assert worklogs.__version__ == "0.3.3"
32
32
 
33
33
 
34
34
  def test_cli_accepts_no_arguments() -> None:
@@ -432,7 +432,7 @@ wheels = [
432
432
 
433
433
  [[package]]
434
434
  name = "worklogs"
435
- version = "0.3.2"
435
+ version = "0.3.3"
436
436
  source = { editable = "." }
437
437
  dependencies = [
438
438
  { name = "colorlog" },
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes