From 6d11bcc489d13f12c68e71a00a828cc39fe252c0 Mon Sep 17 00:00:00 2001 From: Richard Evans Date: Thu, 5 Sep 2024 09:42:58 -0600 Subject: [PATCH] Updated the version --- CHANGELOG.md | 11 +++++++++++ ogcore/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ccfcf653d..e6b5bdc17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.13.0] - 2024-09-05 12:00:00 + +### Added + +- Added remittances to theory and code +- Added 5 new remittance parameters to `default_parameters.json` +- Changed all instances of "p_t Y_t" in the documentation to just "Y_t" +- Added "Transfers to households" section in `households.md` +- Added pensions to household budget constraint +- Rewrote household budget constraint in terms of individual variables + ## [0.12.0] - 2024-08-20 12:00:00 ### Added diff --git a/ogcore/__init__.py b/ogcore/__init__.py index a11acad60..5c0a1d072 100644 --- a/ogcore/__init__.py +++ b/ogcore/__init__.py @@ -20,4 +20,4 @@ from ogcore.txfunc import * from ogcore.utils import * -__version__ = "0.12.0" +__version__ = "0.13.0" diff --git a/setup.py b/setup.py index 47bd7f8d8..de51a92f2 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="ogcore", - version="0.12.0", + version="0.13.0", author="Jason DeBacker and Richard W. Evans", license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", description="A general equilibrium overlapping generations model for fiscal policy analysis",