beancount-cli 0.2.8__tar.gz → 0.2.9__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.8 → beancount_cli-0.2.9}/PKG-INFO +2 -2
  2. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/README.md +1 -1
  3. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/pyproject.toml +1 -1
  4. beancount_cli-0.2.9/src/beancount_cli/__init__.py +1 -0
  5. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/tests/smoke_test.py +1 -1
  6. beancount_cli-0.2.8/src/beancount_cli/__init__.py +0 -1
  7. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/.gitignore +0 -0
  8. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/CHANGELOG.md +0 -0
  9. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/LICENSE +0 -0
  10. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/src/beancount_cli/adapters.py +0 -0
  11. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/src/beancount_cli/cli.py +0 -0
  12. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/src/beancount_cli/commands/__init__.py +0 -0
  13. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/src/beancount_cli/commands/account.py +0 -0
  14. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/src/beancount_cli/commands/commodity.py +0 -0
  15. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/src/beancount_cli/commands/common.py +0 -0
  16. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/src/beancount_cli/commands/price.py +0 -0
  17. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/src/beancount_cli/commands/report.py +0 -0
  18. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/src/beancount_cli/commands/root.py +0 -0
  19. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/src/beancount_cli/commands/transaction.py +0 -0
  20. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/src/beancount_cli/config.py +0 -0
  21. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/src/beancount_cli/formatting.py +0 -0
  22. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/src/beancount_cli/models.py +0 -0
  23. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/src/beancount_cli/py.typed +0 -0
  24. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/src/beancount_cli/services.py +0 -0
  25. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/tests/conftest.py +0 -0
  26. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/tests/test_advanced.py +0 -0
  27. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/tests/test_bql.py +0 -0
  28. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/tests/test_cli.py +0 -0
  29. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/tests/test_config.py +0 -0
  30. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/tests/test_coverage_gap.py +0 -0
  31. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/tests/test_models.py +0 -0
  32. {beancount_cli-0.2.8 → beancount_cli-0.2.9}/tests/test_services.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: beancount-cli
3
- Version: 0.2.8
3
+ Version: 0.2.9
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
@@ -125,7 +125,7 @@ bean report trial-balance main.beancount
125
125
  bean report holdings main.beancount
126
126
 
127
127
  # Audit a specific currency (Source of Exposure)
128
- bean report audit USD main.beancount
128
+ bean report audit --currency USD main.beancount
129
129
  ```
130
130
 
131
131
  > [!TIP]
@@ -94,7 +94,7 @@ bean report trial-balance main.beancount
94
94
  bean report holdings main.beancount
95
95
 
96
96
  # Audit a specific currency (Source of Exposure)
97
- bean report audit USD main.beancount
97
+ bean report audit --currency USD main.beancount
98
98
  ```
99
99
 
100
100
  > [!TIP]
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "beancount-cli"
3
- version = "0.2.8"
3
+ version = "0.2.9"
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.9"
@@ -19,7 +19,7 @@ def test_smoke():
19
19
  check=False,
20
20
  )
21
21
  assert result.returncode == 0
22
- assert "Beancount CLI tool" in result.stdout
22
+ assert "Beancount CLI tool" in result.stdout + result.stderr
23
23
 
24
24
  # 2. Check version command
25
25
  result = subprocess.run(
@@ -1 +0,0 @@
1
- __version__ = "0.2.8"
File without changes
File without changes