Skip to content

Commit f7d01f7

Browse files
authored
Merge pull request #224 from algolia/migrate_release
Migrate release to twine
2 parents da47117 + 674be72 commit f7d01f7

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

ChangeLog

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11

2-
HANGELOG
2+
CHANGELOG
3+
2017-11-02 1.5.1
4+
* [FIX] Fix reindex_all() and save_record() when should_index is not callable
5+
36
2017-05-21 1.5.0
47
* [FEAT] Allow properties as custom_objectID
58

algoliasearch_django/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '1.5.0'
1+
VERSION = '1.5.1'

release.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/sh
2+
rm -f dist/* # Remove eventual previous versions
3+
python setup.py sdist bdist_wheel # Create Source Distribution and Universal Wheel
4+
twine upload dist/* # Upload to PyPI
5+

requirements.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
django>=1.7
22
algoliasearch
3-
tox
4-
wheel
3+
# dev dependencies
54
pypandoc
5+
wheel
6+
tox
7+
twine

0 commit comments

Comments
 (0)