Skip to content

Commit

Permalink
add changelog for #555
Browse files Browse the repository at this point in the history
mark changes with rst extension for github (#548)
[ci skip]
  • Loading branch information
davidism committed Oct 4, 2017
1 parent 82d458c commit 0ed2250
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGES → CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@ In development
by models. (`#551`_)
- Raise the correct error when a model has a table name but no primary key.
(`#556`_)
- Fix ``repr`` on models that don't have an identity because they have not been
flushed yet. (`#555`_)
- Allow specifying a ``max_per_page`` limit for pagination, to avoid users
specifying high values in the request args. (`#542`_)

.. _#542: https://github.com/mitsuhiko/flask-sqlalchemy/pull/542
.. _#551: https://github.com/mitsuhiko/flask-sqlalchemy/pull/551
.. _#555: https://github.com/mitsuhiko/flask-sqlalchemy/pull/555
.. _#556: https://github.com/mitsuhiko/flask-sqlalchemy/pull/556


Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include CHANGES LICENSE
include CHANGES.rst LICENSE
graft docs
prune docs/_build
recursive-exclude docs/_themes .git*
Expand Down
2 changes: 1 addition & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1 +1 @@
.. include:: ../CHANGES
.. include:: ../CHANGES.rst
2 changes: 1 addition & 1 deletion scripts/make-release.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


def parse_changelog():
with open('CHANGES') as f:
with open('CHANGES.rst') as f:
lineiter = iter(f)
for line in lineiter:
match = re.search('^Version\s+(.*)', line.strip())
Expand Down

0 comments on commit 0ed2250

Please sign in to comment.