From 0e5463f5d4326e7152628c5e716a688ca705c396 Mon Sep 17 00:00:00 2001 From: Kevin Sheppard Date: Fri, 12 Nov 2021 23:18:48 +0000 Subject: [PATCH] RLS: Release 0.13.1 documentation --- docs/source/release/index.rst | 1 + docs/source/release/version0.13.1.rst | 98 +++++++++++++++++++++++++++ tools/releasing/release_note.py | 8 +-- 3 files changed, 103 insertions(+), 4 deletions(-) create mode 100644 docs/source/release/version0.13.1.rst diff --git a/docs/source/release/index.rst b/docs/source/release/index.rst index f2df3638053..fc605b4ca67 100644 --- a/docs/source/release/index.rst +++ b/docs/source/release/index.rst @@ -7,6 +7,7 @@ Release Notes .. toctree:: :maxdepth: 1 + version0.13.1 version0.13.0 version0.12.1 version0.12 diff --git a/docs/source/release/version0.13.1.rst b/docs/source/release/version0.13.1.rst new file mode 100644 index 00000000000..8417133b926 --- /dev/null +++ b/docs/source/release/version0.13.1.rst @@ -0,0 +1,98 @@ +:orphan: + +============== +Release 0.13.1 +============== + +Release summary +=============== + +statsmodels is using github to store the updated documentation. Two version are available: + +- `Stable `_, the latest release +- `Development `_, the latest build of the main branch + +**Warning** + +API stability is not guaranteed for new features, although even in +this case changes will be made in a backwards compatible way if +possible. The stability of a new feature depends on how much time it +was already in statsmodels main and how much usage it has already +seen. If there are specific known problems or limitations, then they +are mentioned in the docstrings. + +Stats +----- +**Issues Closed**: 13 + +**Pull Requests Merged**: 15 + + + +What's new - an overview +======================== +This a bug fix and deprecation only release. + + +``maintenance`` +~~~~~~~~~~~~~~~ +- Merge pull request #7787 from gmcmacran/loglogDoc (:pr:`7845`) +- Merge pull request #7791 from Wooqo/fix-hw (:pr:`7846`) +- Merge pull request #7795 from bashtage/bug-none-kpss (:pr:`7847`) +- Merge pull request #7801 from bashtage/change-setup (:pr:`7850`) +- Merge pull request #7812 from joaomacalos/zivot-andrews-docs (:pr:`7852`) +- Merge pull request #7799 from bashtage/update-codecov (:pr:`7853`) +- Merge pull request #7820 from rgommers/scipy-imports (:pr:`7854`) +- BACKPORT Merge pull request #7844 from bashtage/future-pandas (:pr:`7855`) +- Merge pull request #7816 from tncowart/unalias_links (:pr:`7857`) +- Merge pull request #7832 from larsoner/dep (:pr:`7858`) + + +Development summary and credits +=============================== + +Besides receiving contributions for new and improved features and for bugfixes, +important contributions to general maintenance for this release came from + +- Chad Fulton +- Brock Mendel +- Peter Quackenbush +- Kerby Shedden +- Kevin Sheppard + +and the general maintainer and code reviewer + +- Josef Perktold + +Additionally, many users contributed by participation in github issues and +providing feedback. + +Thanks to all of the contributors for the 0.13.1 release (based on git log): + +- Josef Perktold +- Kevin Sheppard + + +These lists of names are automatically generated based on git log, and may not +be complete. + +Merged Pull Requests +-------------------- + +The following Pull Requests were merged since the last release: + +- :pr:`7845`: BACKPORT: Merge pull request #7787 from gmcmacran/loglogDoc +- :pr:`7846`: BACKPORT: Merge pull request #7791 from Wooqo/fix-hw +- :pr:`7847`: BACKPORT: Merge pull request #7795 from bashtage/bug-none-kpss +- :pr:`7850`: BACKPORT: Merge pull request #7801 from bashtage/change-setup +- :pr:`7852`: BACKPORT: Merge pull request #7812 from joaomacalos/zivot-andrews-docs +- :pr:`7853`: BACKPORT: Merge pull request #7799 from bashtage/update-codecov +- :pr:`7854`: BACKPORT: Merge pull request #7820 from rgommers/scipy-imports +- :pr:`7855`: BACKPORT Merge pull request #7844 from bashtage/future-pandas +- :pr:`7857`: BACKPORT: Merge pull request #7816 from tncowart/unalias_links +- :pr:`7858`: BACKPORT: Merge pull request #7832 from larsoner/dep +- :pr:`7876`: BACKPORT: Merge pull request #7874 from bashtage/scalar-wald +- :pr:`7877`: BACKPORT: Merge pull request #7842 from bashtage/deprecate-cols +- :pr:`7878`: BACKPORT: Merge pull request #7839 from guilhermesilveira/main +- :pr:`7879`: BACKPORT: Merge pull request #7868 from josef-pkt/tst_penalized_convergence +- :pr:`7880`: MAINT: Update pyproject for 3.10 diff --git a/tools/releasing/release_note.py b/tools/releasing/release_note.py index fb594e881e4..39b053446dd 100644 --- a/tools/releasing/release_note.py +++ b/tools/releasing/release_note.py @@ -18,13 +18,13 @@ from jinja2 import Template # Full release version -RELEASE = "0.13.0" +RELEASE = "0.13.1" # The current milestone and short version -VERSION = MILESTONE = "0.13" +VERSION = MILESTONE = "0.13.1" # This is the final commit from the previous release -LAST_COMMIT_SHA = "da2099d330b01edcffcebadd4a980fbb4246ed4f" +LAST_COMMIT_SHA = "30e79366a7297049861d8993bf50627298970deb" # Branch, usually main but can be a maintenance branch as well -BRANCH = "main" +BRANCH = "maintenance/0.13.x" # Provide access token using command line to keep out of repo ACCESS_TOKEN = os.environ.get("GITHUB_ACCESS_TOKEN", None) if not ACCESS_TOKEN: