Skip to content

Commit

Permalink
Release/v0.2.0 (#10)
Browse files Browse the repository at this point in the history
* update readme and changelog.

* update unreleased link.
  • Loading branch information
gyanesh-m committed Feb 3, 2021
1 parent 614aa14 commit 5a981d0
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 13 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [UNRELEASED][unreleased]

## [0.2.0][0.2.0]

### Added
* support for pv & npv functions with examples & test cases.
* test cases for PlotRows
* updated readme.

### Changed
* refactored PlotRows

## [0.1.0][0.1.0]

### Added
* support for fv, ipmt, pmt, ppmt functions.
* support for amortisation table generation.

[unreleased]: https://github.com/razorpay/go-financial/compare/v0.1.0...master
[unreleased]: https://github.com/razorpay/go-financial/compare/v0.2.0...master
[0.1.0]: https://github.com/razorpay/go-financial/releases/tag/v0.1.0
[0.2.0]: https://github.com/razorpay/go-financial/releases/tag/v0.2.0
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ Currently, only some functions are ported,
which are as follows:


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

# Index
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:
Expand Down

0 comments on commit 5a981d0

Please sign in to comment.