Skip to content

Commit

Permalink
Add changelog (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtilly authored Oct 26, 2020
1 parent 0c50629 commit b36c5a1
Show file tree
Hide file tree
Showing 4 changed files with 111 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Taken directly from https://github.com/ambv/black/blob/master/.flake8
[flake8]
ignore = E203, E266, E501, E731, W503, C901, D104, D100
ignore =
C408, # ignore temporarily https://github.com/adamchainz/flake8-comprehensions/pull/282
E203,
E266, # too many leading # for block comments
E501, # line too long, conflict with black
E731,
W503, # linebreak before binary operator, conflict with black
C901,
D104,
D100,
max-line-length = 88
max-complexity = 18
select = B,C,E,F,W,T4,B9,D
Expand Down
6 changes: 6 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<!--
Thank you for pull request.
Below are a few things we ask you kindly to self-check before getting a review. Remove checks that are not relevant.
-->
Checklist
* [ ] Added a `CHANGELOG.rst` entry
94 changes: 94 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
.. Versioning follows semantic versioning, see also
https://semver.org/spec/v2.0.0.html. The most important bits are:
* Update the major if you break the public API
* Update the minor if you add new functionality
* Update the patch if you fixed a bug
Changelog
=========


0.0.14 - 2020-08-06
-------------------

**New features:**

- Add Tweedie Link.
- Allow infinite bounds.


**Bug fixes:**

- Unstandardize regularization path.
- No copying in predict.

**Other:**

- Various memory and performance improvements.
- Update pre-commit hooks.


0.0.13 - 2020-07-23
-------------------

See git history.


0.0.12 - 2020-07-07
-------------------

See git history.


0.0.11 - 2020-07-02
-------------------

See git history.


0.0.10 - 2020-06-30
-------------------

See git history.


0.0.9 - 2020-06-26
-------------------

See git history.


0.0.8 - 2020-06-24
------------------

See git history.


0.0.7 - 2020-06-17
------------------

See git history.


0.0.6 - 2020-06-16
------------------

See git history.


0.0.5 - 2020-06-10
------------------

See git history.


0.0.4 - 2020-06-08
------------------

See git history.


0.0.3 - 2020-06-08
------------------

See git history.
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Welcome to quantcore.glm's documentation!
:caption: Contents:

API Reference <api/modules>
Changelog <changelog>


Indices and tables
Expand Down

0 comments on commit b36c5a1

Please sign in to comment.