diff --git a/CHANGELOG.md b/CHANGELOG.md index f10114ca3..2c2bb0d2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.4] - 2024-04-03 22:00:00 + +### Added + +- Add a function to `utils.py` to shift lifetime profiles of parameters +- Add a function to `utils.py` to compute percentage changes in non-stationary variables +- Add more functionality to `parameters_plots.py`, allowing the user to plot parameters from multiple parameters objects together + ## [0.11.3] - 2024-03-08 12:00:00 ### Added diff --git a/ogcore/__init__.py b/ogcore/__init__.py index 616d9c2dd..2e6fa0b4c 100644 --- a/ogcore/__init__.py +++ b/ogcore/__init__.py @@ -20,4 +20,4 @@ from ogcore.txfunc import * from ogcore.utils import * -__version__ = "0.11.3" +__version__ = "0.11.4" diff --git a/setup.py b/setup.py index 443c43912..318f6415e 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="ogcore", - version="0.11.3", + version="0.11.4", 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",