Skip to content

Commit

Permalink
Merge pull request #429 from QuantEcon/v-0.4.0
Browse files Browse the repository at this point in the history
Release of 0.4.0
  • Loading branch information
mmcky authored Aug 20, 2018
2 parents 0dac814 + c18faa8 commit 9e450f1
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 2 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,36 @@

[Full Changelog](https://github.com/QuantEcon/QuantEcon.py/compare/0.3.8.1...HEAD)

**Implemented enhancements:**

- Add bisection and brent's method for root finding [\#424](https://github.com/QuantEcon/QuantEcon.py/pull/424) ([spvdchachan](https://github.com/spvdchachan))
- EHN: Add `qhull\_options` to `game\_theory.vertex\_enumeration` [\#421](https://github.com/QuantEcon/QuantEcon.py/pull/421) ([oyamad](https://github.com/oyamad))
- ENH: Root finding [\#417](https://github.com/QuantEcon/QuantEcon.py/pull/417) ([chrishyland](https://github.com/chrishyland))
- Add `'interior-point'` option to `is\_dominated`; add `dominated\_actions` [\#415](https://github.com/QuantEcon/QuantEcon.py/pull/415) ([oyamad](https://github.com/oyamad))

**Closed issues:**

- update RTD [\#423](https://github.com/QuantEcon/QuantEcon.py/issues/423)
- Add robust jitted root finding routine [\#422](https://github.com/QuantEcon/QuantEcon.py/issues/422)
- Import fails [\#408](https://github.com/QuantEcon/QuantEcon.py/issues/408)
- Setup automated GitHub release notes [\#402](https://github.com/QuantEcon/QuantEcon.py/issues/402)
- Notification: Direct commits! [\#400](https://github.com/QuantEcon/QuantEcon.py/issues/400)
- remove authors' names [\#394](https://github.com/QuantEcon/QuantEcon.py/issues/394)

**Merged pull requests:**

- DOC: Add doc entry for root\_finding [\#428](https://github.com/QuantEcon/QuantEcon.py/pull/428) ([oyamad](https://github.com/oyamad))
- update to new rtd requirements spec [\#427](https://github.com/QuantEcon/QuantEcon.py/pull/427) ([mmcky](https://github.com/mmcky))
- Add `requests` to setup.py [\#420](https://github.com/QuantEcon/QuantEcon.py/pull/420) ([oyamad](https://github.com/oyamad))
- DOC: Add `mock` to the dependencies list [\#418](https://github.com/QuantEcon/QuantEcon.py/pull/418) ([oyamad](https://github.com/oyamad))
- adding jitted scalar maximization routine, first build [\#416](https://github.com/QuantEcon/QuantEcon.py/pull/416) ([jstac](https://github.com/jstac))
- TEST: Fix test\_discrete\_rv [\#412](https://github.com/QuantEcon/QuantEcon.py/pull/412) ([oyamad](https://github.com/oyamad))
- add minimum version number for numba support [\#409](https://github.com/QuantEcon/QuantEcon.py/pull/409) ([mmcky](https://github.com/mmcky))
- FIX: fix release year [\#407](https://github.com/QuantEcon/QuantEcon.py/pull/407) ([mirca](https://github.com/mirca))
- Add hamilton filter [\#405](https://github.com/QuantEcon/QuantEcon.py/pull/405) ([Shunsuke-Hori](https://github.com/Shunsuke-Hori))
- Setup an auto-generate changelog for releases [\#403](https://github.com/QuantEcon/QuantEcon.py/pull/403) ([mmcky](https://github.com/mmcky))
- README: Add a contributor [\#401](https://github.com/QuantEcon/QuantEcon.py/pull/401) ([oyamad](https://github.com/oyamad))
- RFC: Remove authors' name [\#399](https://github.com/QuantEcon/QuantEcon.py/pull/399) ([QBatista](https://github.com/QBatista))
- Add sample game generators from bimatrix-generators [\#392](https://github.com/QuantEcon/QuantEcon.py/pull/392) ([oyamad](https://github.com/oyamad))

## [0.3.8.1](https://github.com/QuantEcon/QuantEcon.py/tree/0.3.8.1) (2018-03-13)
Expand Down
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,21 @@ modification, are permitted provided that the following conditions are met:

## Major Changes

### Ver 0.4.0 (20-August-2018)

1. FEAT: Add bisection and brent's method for root finding. See PR [\#424](https://github.com/QuantEcon/QuantEcon.py/pull/424) ([spvdchachan](https://github.com/spvdchachan))
1. FEAT: Add `qhull\_options` to `game\_theory.vertex\_enumeration`. See PR [\#421](https://github.com/QuantEcon/QuantEcon.py/pull/421) ([oyamad](https://github.com/oyamad))
1. FEAT: Root finding. See PR [\#417](https://github.com/QuantEcon/QuantEcon.py/pull/417) ([chrishyland](https://github.com/chrishyland))
1. FEAT: Add `'interior-point'` option to `is\_dominated`; add `dominated\_actions`. See PR [\#415](https://github.com/QuantEcon/QuantEcon.py/pull/415) ([oyamad](https://github.com/oyamad))
1. FEAT: Add hamilton filter. See PR [\#405](https://github.com/QuantEcon/QuantEcon.py/pull/405) ([Shunsuke-Hori](https://github.com/Shunsuke-Hori))
1. FEAT: Add sample game generators from bimatrix-generators. See PR [\#392](https://github.com/QuantEcon/QuantEcon.py/pull/392) ([oyamad](https://github.com/oyamad))
1. MAINT: update to new rtd requirements spec. See PR [\#427](https://github.com/QuantEcon/QuantEcon.py/pull/427) ([mmcky](https://github.com/mmcky))
1. MAINT: Add `requests` to setup.py. See PR [\#420](https://github.com/QuantEcon/QuantEcon.py/pull/420) ([oyamad](https://github.com/oyamad))
1. MAINT: Add `mock` to the dependencies list. See PR [\#418](https://github.com/QuantEcon/QuantEcon.py/pull/418) ([oyamad](https://github.com/oyamad))
1. TEST: Fix test\_discrete\_rv. See PR [\#412](https://github.com/QuantEcon/QuantEcon.py/pull/412) ([oyamad](https://github.com/oyamad))
1. MAINT: add minimum version number for numba support. See PR [\#409](https://github.com/QuantEcon/QuantEcon.py/pull/409) ([mmcky](https://github.com/mmcky))
1. MAINT: Setup an auto-generate changelog for releases. See PR [\#403](https://github.com/QuantEcon/QuantEcon.py/pull/403) ([mmcky](https://github.com/mmcky))

### Ver 0.3.8 (14-March-2018)
1. FEAT: Add random.draw. See [PR #397](https://github.com/QuantEcon/QuantEcon.py/pull/397)
1. FEAT: Add Numba jit version of scipy.special.comb. See [PR #377](https://github.com/QuantEcon/QuantEcon.py/pull/377)
Expand Down
2 changes: 1 addition & 1 deletion quantecon/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
This is a VERSION file and should NOT be manually altered
"""
version = '0.3.8'
version = '0.4.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#-Write Versions File-#
#~~~~~~~~~~~~~~~~~~~~~#

VERSION = '0.3.8'
VERSION = '0.4.0'

def write_version_py(filename=None):
"""
Expand Down

0 comments on commit 9e450f1

Please sign in to comment.