Skip to content

Commit 5a981d0

Browse files
authored
Release/v0.2.0 (#10)
* update readme and changelog. * update unreleased link.
1 parent 614aa14 commit 5a981d0

File tree

2 files changed

+24
-13
lines changed

2 files changed

+24
-13
lines changed

CHANGELOG.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55

66
## [UNRELEASED][unreleased]
77

8+
## [0.2.0][0.2.0]
9+
10+
### Added
11+
* support for pv & npv functions with examples & test cases.
12+
* test cases for PlotRows
13+
* updated readme.
14+
15+
### Changed
16+
* refactored PlotRows
17+
818
## [0.1.0][0.1.0]
919

1020
### Added
1121
* support for fv, ipmt, pmt, ppmt functions.
1222
* support for amortisation table generation.
1323

14-
[unreleased]: https://github.com/razorpay/go-financial/compare/v0.1.0...master
24+
[unreleased]: https://github.com/razorpay/go-financial/compare/v0.2.0...master
1525
[0.1.0]: https://github.com/razorpay/go-financial/releases/tag/v0.1.0
26+
[0.2.0]: https://github.com/razorpay/go-financial/releases/tag/v0.2.0

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ Currently, only some functions are ported,
1313
which are as follows:
1414

1515

16-
| numpy-financial function | go native function ported? |
17-
|:------------------------: |:------------------: |
18-
| fv ||
19-
| ipmt ||
20-
| pmt ||
21-
| ppmt ||
22-
| nper | |
23-
| pv ||
24-
| rate | |
25-
| irr | |
26-
| npv ||
27-
| mirr | |
16+
| numpy-financial function | go native function ported? | info|
17+
|:------------------------: |:------------------: | :------------------|
18+
| fv || Computes the future value|
19+
| ipmt || Computes interest payment for a loan|
20+
| pmt || Computes the fixed periodic payment(principal + interest) made against a loan amount|
21+
| ppmt || Computes principal payment for a loan|
22+
| nper | | Computes the number of periodic payments|
23+
| pv || Computes the present value of a payment|
24+
| rate | | Computes the rate of interest per period|
25+
| irr | | Computes the internal rate of return|
26+
| npv || Computes the net present value of a series of cash flow|
27+
| mirr | | Computes the modified internal rate of return|
2828

2929
# Index
3030
While the numpy-financial package contains a set of elementary financial functions, this pkg also contains some helper functions on top of it. Their usage and description can be found below:

0 commit comments

Comments
 (0)