Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RELEASE v.0.7.2 #728

Merged
merged 4 commits into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## Ver 0.7.2 (14th-March-2024)

### Fix

* FIX: linprog_simplex: Fix bug in Phase 1 by @oyamad in https://github.com/QuantEcon/QuantEcon.py/pull/727

### Maintenance

* FIX: Update license file from BSD-3 to MIT by @mmcky in https://github.com/QuantEcon/QuantEcon.py/pull/712
* MAINT: Update end year in License by @mmcky in https://github.com/QuantEcon/QuantEcon.py/pull/713
* Add citation by @Smit-create in https://github.com/QuantEcon/QuantEcon.py/pull/719
* Update ci.yml to latest version by @kp992 in https://github.com/QuantEcon/QuantEcon.py/pull/718

**Full Changelog**: https://github.com/QuantEcon/QuantEcon.py/compare/v0.7.1...v0.7.2

## Ver 0.7.1 (29-May-2023)

This is a minor release with bug fixes and improvements to documentation.
Expand Down
2 changes: 1 addition & 1 deletion quantecon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Import the main names to top level.
"""

__version__ = '0.7.1'
__version__ = '0.7.2'

try:
import numba
Expand Down
Loading