Skip to content

Commit

Permalink
Merge pull request #7881 from statsmodels/release-note-0-13-1
Browse files Browse the repository at this point in the history
RLS: Release 0.13.1 documentation
  • Loading branch information
bashtage committed Nov 12, 2021
2 parents 985da31 + 0e5463f commit 70647db
Show file tree
Hide file tree
Showing 3 changed files with 103 additions and 4 deletions.
1 change: 1 addition & 0 deletions docs/source/release/index.rst
Expand Up @@ -7,6 +7,7 @@ Release Notes
.. toctree::
:maxdepth: 1

version0.13.1
version0.13.0
version0.12.1
version0.12
Expand Down
98 changes: 98 additions & 0 deletions 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 <https://www.statsmodels.org/>`_, the latest release
- `Development <https://www.statsmodels.org/devel/>`_, 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
8 changes: 4 additions & 4 deletions tools/releasing/release_note.py
Expand Up @@ -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:
Expand Down

0 comments on commit 70647db

Please sign in to comment.