Skip to content

Commit

Permalink
Merge branch 'release/0.0.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
xeroc committed Aug 20, 2019
2 parents f9256e0 + b49dc11 commit 1969076
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .changes/0.0.4.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[
{
"description": "Ensure the MANIFEST contains the templates, scripts and styles",
"type": "patch"
}
]
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
Note: version releases in the 0.x.y range may introduce breaking changes.

## 0.0.4

- patch: Ensure the MANIFEST contains the templates, scripts and styles

## 0.0.3

- patch: Improve Makefile to work with semver
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
include *.md
include requirements*.txt
recursive-include flask_beet/templates *
recursive-include flask_beet/static *
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,13 @@ git:
git push --tags

check:
python3 setup.py check
twine check dist/*

dist:
python3 setup.py sdist bdist_wheel
python3 setup.py bdist_wheel

upload:
twine upload --repository-url https://upload.pypi.org/legacy/ dist/*

docs:
Expand All @@ -56,4 +58,4 @@ semver:
git flow release start $(CURRENT_VERSION)
git flow release finish $(CURRENT_VERSION)

release: semver clean check dist git
release: semver clean dist check upload git
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ from flask_beet import Beet
app = Flask(__name__)
beet = Beet(app)
```

You'll also need to extend your user model with the `BeetMixin` mixin:

```python
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from setuptools import setup

__version__ = "0.0.2"
__version__ = "0.0.3"

setup(
name="Flask-Beet",
Expand All @@ -12,6 +12,7 @@
author_email="fabian@chainsquad.com",
description="A flask extension that allows login via Beet app",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=["flask_beet"],
zip_safe=False,
include_package_data=True,
Expand Down

0 comments on commit 1969076

Please sign in to comment.