Skip to content

Commit a66ad98

Browse files
committed
0.4.7 version bump
- update dependencies
1 parent 3e1a43b commit a66ad98

File tree

4 files changed

+28
-18
lines changed

4 files changed

+28
-18
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## 0.4.7 - 2021-06-01
4+
5+
- Minor bug fixes in summary statement parser.
6+
- cli now uses [rich](http://rich.readthedocs.io/) for console output.
7+
- Dependency management and deployment is handled by poetry.
8+
- **BREAKING CHANGE**: Table output choices have been removed.
9+
`-s/--summary` is a flag and doesn't accept any additional arguments.
10+
- Support for folios without PAN (#28).
11+
- add support for new style dividend transactions after IDCW renaming.
12+
- improved transaction entry parser.
13+
314
## 0.4.6 - 2021-04-04
415

516
- New `sort_transactions` option in `casparser.read_cas_pdf` (and `--sort` flag in CLI)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ casparser also comes with a command-line interface that prints summary of parsed
118118
portfolio in a wide variety of formats.
119119

120120
```bash
121-
Usage: casparser [-o output_file.json|output_file.csv] [-p password] [-s type] [-a] CAS_PDF_FILE
121+
Usage: casparser [-o output_file.json|output_file.csv] [-p password] [-s] [-a] CAS_PDF_FILE
122122

123123
-o, --output FILE Output file path. Saves the parsed data as json or csv
124124
depending on the file extension. For other extensions, the

poetry.lock

Lines changed: 14 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "casparser"
3-
version = "0.4.7-alpha.2"
3+
version = "0.4.7"
44
description = "(Karvy/Kfintech/CAMS) Consolidated Account Statement (CAS) PDF parser"
55
authors = ["Sandeep Somasekharan <[email protected]>"]
66
homepage = "https://github.com/codereverser/casparser"
@@ -17,7 +17,7 @@ include = [ "CHANGELOG.md" ]
1717

1818
[tool.poetry.dependencies]
1919
python = "^3.8"
20-
casparser-isin = ">=2021.5.1"
20+
casparser-isin = ">=2021.6.1"
2121
click = "^7.1.2"
2222
colorama = "^0.4.4"
2323
"pdfminer.six" = "20201018"

0 commit comments

Comments
 (0)