beancount-cli 0.2.11__tar.gz → 0.2.12__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.
Files changed (32) hide show
  1. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/CHANGELOG.md +10 -0
  2. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/PKG-INFO +1 -1
  3. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/pyproject.toml +1 -1
  4. beancount_cli-0.2.12/src/beancount_cli/__init__.py +1 -0
  5. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/commands/price.py +2 -2
  6. beancount_cli-0.2.11/src/beancount_cli/__init__.py +0 -1
  7. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/.gitignore +0 -0
  8. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/LICENSE +0 -0
  9. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/README.md +0 -0
  10. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/adapters.py +0 -0
  11. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/cli.py +0 -0
  12. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/commands/__init__.py +0 -0
  13. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/commands/account.py +0 -0
  14. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/commands/commodity.py +0 -0
  15. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/commands/common.py +0 -0
  16. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/commands/report.py +0 -0
  17. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/commands/root.py +0 -0
  18. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/commands/transaction.py +0 -0
  19. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/config.py +0 -0
  20. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/formatting.py +0 -0
  21. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/models.py +0 -0
  22. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/py.typed +0 -0
  23. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/services.py +0 -0
  24. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/tests/conftest.py +0 -0
  25. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/tests/smoke_test.py +0 -0
  26. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/tests/test_advanced.py +0 -0
  27. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/tests/test_bql.py +0 -0
  28. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/tests/test_cli.py +0 -0
  29. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/tests/test_config.py +0 -0
  30. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/tests/test_coverage_gap.py +0 -0
  31. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/tests/test_models.py +0 -0
  32. {beancount_cli-0.2.11 → beancount_cli-0.2.12}/tests/test_services.py +0 -0
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.2.12] - 2026-04-08
9
+
10
+ ### Fixed
11
+ - `price fetch --update`: cap `date_last` to yesterday (today exclusive) to avoid fetching intraday prices while the market is still open.
12
+
13
+ ## [0.2.11] - 2026-04-07
14
+
15
+ ### Fixed
16
+ - `price fetch`: use `[tool.uv.sources]` git override for `beanprice` so the romamo fork is installed correctly; PyPI metadata keeps `beanprice>=2.1.0` for compatibility.
17
+
8
18
  ## [0.2.10] - 2026-04-07
9
19
 
10
20
  ### Changed
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: beancount-cli
3
- Version: 0.2.11
3
+ Version: 0.2.12
4
4
  Summary: A CLI tool to manage Beancount ledgers
5
5
  Project-URL: Homepage, https://github.com/romamo/beancount-cli
6
6
  Project-URL: Repository, https://github.com/romamo/beancount-cli
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "beancount-cli"
3
- version = "0.2.11"
3
+ version = "0.2.12"
4
4
  description = "A CLI tool to manage Beancount ledgers"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -0,0 +1 @@
1
+ __version__ = "0.2.12"
@@ -1,7 +1,7 @@
1
1
  import logging
2
2
  import sys
3
3
  from concurrent.futures import ThreadPoolExecutor, as_completed
4
- from datetime import date, datetime, timedelta
4
+ from datetime import date, datetime
5
5
  from decimal import Decimal
6
6
  from pathlib import Path
7
7
  from tempfile import gettempdir
@@ -124,7 +124,7 @@ def price_fetch(
124
124
  if update or fill_gaps:
125
125
  jobs = bp_price.get_price_jobs_up_to_date(
126
126
  entries,
127
- date_last=datetime.now().date() + timedelta(days=1),
127
+ date_last=datetime.now().date(),
128
128
  inactive=inactive,
129
129
  )
130
130
  else:
@@ -1 +0,0 @@
1
- __version__ = "0.2.11"
File without changes
File without changes