Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate release to twine #224

Merged
merged 2 commits into from
Nov 2, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@

HANGELOG
CHANGELOG
2017-11-02 1.5.1
* [FIX] Fix reindex_all() and save_record() when should_index is not callable

2017-05-21 1.5.0
* [FEAT] Allow properties as custom_objectID

Expand Down
2 changes: 1 addition & 1 deletion algoliasearch_django/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '1.5.0'
VERSION = '1.5.1'
5 changes: 5 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/sh
rm -f dist/* # Remove eventual previous versions
python setup.py sdist bdist_wheel # Create Source Distribution and Universal Wheel
twine upload dist/* # Upload to PyPI

6 changes: 4 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
django>=1.7
algoliasearch
tox
wheel
# dev dependencies
pypandoc
wheel
tox
twine