Skip to content

Commit

Permalink
prepare for 0.2.0 release (#84)
Browse files Browse the repository at this point in the history
* Changelog.

* 0.2.0

* Extra line in pyproject.toml suggested by @xhochy.

* Date in changelog.
  • Loading branch information
mlondschien authored Jun 7, 2024
1 parent 485c953 commit 4ea14d9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
19 changes: 14 additions & 5 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
Changelog
=========

Unreleased
----------
0.2.0 - 2024-06-7
-----------------

**New features:**

- New method :func:`ivmodels.simulate.simulate_guggenberger12` to draw from the data
- New method :func:`~ivmodels.simulate.simulate_guggenberger12` to draw from the data
generating process of Guggenberger (2012).

- The utility functions :func:`ivmodels.utils.proj` and :func:`ivmodels.utils.oproj`
- The utility functions :func:`~ivmodels.utils.proj` and :func:`~ivmodels.utils.oproj`
now accept multiple args to be projected. Usage of this results in performance
improvements.
improvements.

**Other changes:**

- The utility functions :func:`~ivmodels.utils.proj` and :func:`~ivmodels.utils.oproj`
now use the `scipy.linalg(..., lapack_driver="gelsy")`. This results in a speedup.

- The numerical integration function
:func:`~ivmodels.tests.conditional_likelihood_ratio.conditional_likelihood_ratio_critical_value_function`
has been reparametrized, yielding a speedup.
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ requires = ['setuptools', 'setuptools-scm', 'wheel']
name = "ivmodels"
description = "IV Models"
readme = "README.md"
version = "0.1.0"
version = "0.2.0"
requires-python = ">=3.7"
authors = [
{ name = "Malte Londschien", email = "[email protected]" },
Expand All @@ -31,6 +31,9 @@ default_section = 'THIRDPARTY'
[tool.setuptools]
py-modules = ["ivmodels"]

[tool.setuptools.packages.find]
include = ["ivmodels.*"]

[tool.poetry.dependencies]
sphinx = {version = "^3", optional = true}
sphinx-autodoc-typehints ={version = "^1.11.1", optional = true}
Expand Down

0 comments on commit 4ea14d9

Please sign in to comment.