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

Preparation for v0.14.0 release #1377

Merged
merged 7 commits into from
Feb 12, 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
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
-M html Documentation HARK-docs
-T
-W
-j auto
-j 1

- name: Set up git for deployment
run: |
Expand Down
8 changes: 4 additions & 4 deletions Documentation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ For more information on HARK, see [our Github organization](https://github.com/e

## Changes

### 0.13.1
### 0.14.0

Release Date: TBD
Release Date: February 1, 2024

### Major Changes

Expand All @@ -27,13 +27,13 @@ Release Date: TBD
- Fixes bug that prevented risky-asset consumer types from working with time-varying interest rates `Rfree`. [1343](https://github.com/econ-ark/HARK/pull/1343)
- Overhauls and expands condition checking for the ConsIndShock model [#1294](https://github.com/econ-ark/HARK/pull/1294). Condition values and a description of their interpretation is stored in the bilt dictionary of IndShockConsumerType.
- Creates a `models/` directory with Python model configurations for perfect foresight and Fisher 2-period models. [1347](https://github.com/econ-ark/HARK/pull/1347)
- Fixes bug in AgentType simulations where 'who_dies' for period t was being recorded in period t-1in the history Carlo simulation functions using Python model configurations.[1296](https://github.com/econ-ark/HARK/pull/1296)
- Fixes bug in AgentType simulations where 'who_dies' for period t was being recorded in period t-1 in the history Carlo simulation functions using Python model configurations.[1296](https://github.com/econ-ark/HARK/pull/1296)
- Removes unused `simulation.py` .[1296](https://github.com/econ-ark/HARK/pull/1296)
- Fixes bug that default seed was being used in the initializing of income shock distributions. [1380](https://github.com/econ-ark/HARK/pull/1380)

### 0.13.0

Release Date: February, 16, 2023
Release Date: February 16, 2023

### Major Changes

Expand Down
2 changes: 1 addition & 1 deletion HARK/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .core import *

__version__ = "0.13.0"
__version__ = "0.14.0"

"""
Logging tools for HARK.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "econ-ark"
version = "0.13.0"
version = "0.14.0"
authors = [{name = "Econ-ARK team", email = "[email protected]"}]
classifiers = [
"Development Status :: 3 - Alpha",
Expand Down
2 changes: 1 addition & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ interpolation>=2.2.3
joblib>=1.2
matplotlib>=3.6
networkx>=3
numba>=0.56
numba<0.59
numpy>=1.23
pandas>=1.5
quantecon
Expand Down
Loading