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.
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/CHANGELOG.md +10 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/PKG-INFO +1 -1
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/pyproject.toml +1 -1
- beancount_cli-0.2.12/src/beancount_cli/__init__.py +1 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/commands/price.py +2 -2
- beancount_cli-0.2.11/src/beancount_cli/__init__.py +0 -1
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/.gitignore +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/LICENSE +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/README.md +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/adapters.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/cli.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/commands/__init__.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/commands/account.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/commands/commodity.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/commands/common.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/commands/report.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/commands/root.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/commands/transaction.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/config.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/formatting.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/models.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/py.typed +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/src/beancount_cli/services.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/tests/conftest.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/tests/smoke_test.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/tests/test_advanced.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/tests/test_bql.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/tests/test_cli.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/tests/test_config.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/tests/test_coverage_gap.py +0 -0
- {beancount_cli-0.2.11 → beancount_cli-0.2.12}/tests/test_models.py +0 -0
- {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
|
|
@@ -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
|
|
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()
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|