Skip to content

Commit 8436619

Browse files
authored
RELEASE: v0.6.0 (#668)
* RELEASE: v0.6.0 * add one more PR
1 parent 5d46fc3 commit 8436619

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

CHANGELOG.md

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

3+
## Ver 0.6.0 (18-December-2022)
4+
5+
This is the next major release of the `quantecon` package as it includes some **breaking changes** as listed below. It also
6+
includes a number of new features and enhancements including learning algorithms in the game theory module, MLE estimation
7+
for Markov Chains, in addition to some useful helper functions.
8+
9+
[PR #601: Updates to public and private API](https://github.com/QuantEcon/QuantEcon.py/pull/601)
10+
**includes some deprecations** which will issue warnings and a helpful suggestion on how to
11+
update any effected imports from the `quantecon` package.
12+
13+
### Breaking
14+
15+
1. [MAINT: Unify tauchen and rouwenhorst API](https://github.com/QuantEcon/QuantEcon.py/pull/664) ([Smit-create](https://github.com/Smit-create))
16+
17+
### New
18+
19+
1. [ENH: Add MLE Estimation for Markov Chains](https://github.com/QuantEcon/QuantEcon.py/pull/658) ([jstac](https://github.com/jstac))
20+
2. [ENH: Implement cartesian_nearest_index](https://github.com/QuantEcon/QuantEcon.py/pull/660) ([oyamad](https://github.com/oyamad))
21+
3. [ENH: check_random_state: Accept np.random.Generator](https://github.com/QuantEcon/QuantEcon.py/pull/654) ([oyamad](https://github.com/oyamad))
22+
4. [ENH: Add learning algorithms to Game Theory module](https://github.com/QuantEcon/QuantEcon.py/pull/487) ([Yuya-Furusawa](https://github.com/oyamad)
23+
24+
### Fixes
25+
26+
1. [FIX: Fix dtype in cartesian](https://github.com/QuantEcon/QuantEcon.py/pull/659) ([oyamad](https://github.com/oyamad))
27+
2. [FIX: Bugfix in brd.py](https://github.com/QuantEcon/QuantEcon.py/pull/657) ([oyamad](https://github.com/oyamad))
28+
3. [MAINT: player.is_dominated: Allow recent methods for scipy.optimize.linprog](https://github.com/QuantEcon/QuantEcon.py/pull/648) ([oyamad](https://github.com/oyamad))
29+
4. [MAINT: Distinguish between private and public namespaces](https://github.com/QuantEcon/QuantEcon.py/pull/601) ([Smit-create](https://github.com/Smit-create)).
30+
5. [MAINT: Clairfy hamilton_filter API](https://github.com/QuantEcon/QuantEcon.py/pull/634) ([rht](https://github.com/rht))
31+
32+
Thank you to ([oyamad](https://github.com/oyamad)), ([jstac](https://github.com/jstac)), ([Smit-create](https://github.com/Smit-create)),
33+
and ([rht](https://github.com/rht)) for all your contributions, PR reviews, and comments.
34+
335
## Ver 0.5.3 (07-April-2022)
436

537
This is primarily a maintenance release to fix a number of deprecation notices, migrating the tests to use `pytest` rather than `nose`, and python packaging is moving to `flit`

quantecon/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Import the main names to top level.
44
"""
55

6-
__version__ = '0.5.3'
6+
__version__ = '0.6.0'
77

88
try:
99
import numba

0 commit comments

Comments
 (0)