From 3baf72d64dfc18d87df7fb08b0c1449df20d5cb0 Mon Sep 17 00:00:00 2001 From: jdebacker Date: Fri, 26 Jul 2024 10:17:53 -0400 Subject: [PATCH] update version and changelog --- CHANGELOG.md | 6 ++++++ ogcore/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bbbd74e62..d3314628b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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.11.12] - 2024-07-26 01:00:00 + +### Bug Fix + +- Fixes extrapolation of nested lists of tax function parameters. + ## [0.11.11] - 2024-06-24 01:00:00 ### Added diff --git a/ogcore/__init__.py b/ogcore/__init__.py index a7a60577e..7039682e2 100644 --- a/ogcore/__init__.py +++ b/ogcore/__init__.py @@ -20,4 +20,4 @@ from ogcore.txfunc import * from ogcore.utils import * -__version__ = "0.11.11" +__version__ = "0.11.12" diff --git a/setup.py b/setup.py index ad1c98168..70e57cab1 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="ogcore", - version="0.11.11", + version="0.11.12", author="Jason DeBacker and Richard W. Evans", license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", description="A general equilibribum overlapping generations model for fiscal policy analysis",