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

Fix travis config #46

Merged
merged 2 commits into from
Aug 11, 2020
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
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.22.0
current_version = 0.22.1

[bumpversion:file:setup.py]

Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ deploy:
provider: pypi
user: __token__
password:
secure: CejgsfuAMPd6hFBWQvIDE4H9l3fqBklqa9VHvVqhnUMtxTq2YMtyyBBCgckyCjHe4dzUe+amp1WmqDMOflqWoiGMiX4VREFwg/Aot1b0bABugsRH1Lg9npYvVeKDrTldFJpdE2sX4j0DdzU3FPnnAR1QXJELBUpI/bjIn/HnNhX7Y+2DgzJxc2lgUpBZYcg/szc9DCgQwthUxOvb0iKUeqh70A4Pvr42e0Xdn7abez56zMVlGUlWokKLozNfz/wA4QsjcjqzlZtPnlX10pff6mb/o+Pd2E1Sur2tqR6D5R84sBNFO1uyzSd9vdhSpZHWpxoi+baXTEnt5/zwu/Pa9qwhyJK92iNYX9MC1cUpVwvwzd5WbPwMznSkU/YVgcjgH0rbbGvjy1F6yhTGAPpN2umsqQkBC191WESphanuTfTKHyPiDNq3TWJJUxK+icQyRCM3ABI99qzwvCvvzKh70SJqYFuEccV8RzZIuCK9vg5fULhE7ugxhxmLga18VHuAj6FbDuq/8VxrwPWPMO7gMp8lt1eTT+ak0IqnreykiS/42oabF81wND04Moj2q84cx4IRXz34sYFkkmvy+VEFq0UnpEiQGamiPYVc0fDQD9iBdLRiRDOlkwshM44kuvsvggQkKCIfRNHFOvA+xHv1RlxFVn0YbK/q6OzIRVWSfYQ=
secure: UhwZz5MzcLgNfVNkP770ec6uQcvD8VCZtab0xGIirNi3fg3o/9KaCqKBNy2/PxTcZPWmgLyfotiHm+Kb4sjCIIjxTcTYFiTWBgJKDRtHg/1CRkK9RBEL5JqVSPmKylfgQyAMGTwUv/FntCGKA/qJrd9uh+QFV6BdfCoSbe8lX5GtwZ3dc3rl8ALx4QV5nC1nGL8tyUbcnEgnQT//8vHp94orQ1uPzGC/AJ7EJ41DN7TGj/RxBm8ZP1tso4yn8y4HPpllzHxNzC1WOb0dVEy7KYS8EXS4eHuyvr/B3b0WojSDOxYfU1ODe1hf1UJrj6v1fRdMuQhsrW07rcm1OUw07OqDpSvUGr6dwcvqrpTZDgd8WMSK+xd8RiKU2XQ5CRieJcBQfyLXcgIxS7OubQM1+3RXb2hO3mAjh9ocqtQAKRBKwTXFV4YpBd2Gy20Y/x6ADzWyL8HYt6bwOKrOQoK3ixCMfDO9rqzqpeTbm3QTmRaB6qajdnJvRW+lNvZVzail3QDzjLPowVgP1KJFP79g1rxKCC9ArmgTsIMw8KFLtBsiFTr4ScufxYpyqUViJft0pZSfWhWTHYO6F45EdN/7ms2tBlXP5fzyhCXYpe5AMGQLDRscjDb3ufehFk92O8kEnh9sktqLoF1+o/K3bPkT+yNi3/Tos9xs8q2YnWBh+xY=
on:
tags: true
distributions: sdist bdist_wheel
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic
Versioning](https://semver.org/spec/v2.0.0.html).

# [0.22.1] - 2020-08-11
### Fixed
- [PR]() Fix travis config

# [0.22.0] - 2020-08-11
### Added
- [PR 45](https://github.com/salesforce/django-declarative-apis/pull/45) Add optional deferrable tasks
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
# built documents.

# The full version, including alpha/beta/rc tags.
release = '0.22.0' # set by bumpversion
release = '0.22.1' # set by bumpversion

# The short X.Y version.
version = release.rsplit('.', 1)[0]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

setuptools.setup(
name="django-declarative-apis",
version="0.22.0", # set by bumpversion
version="0.22.1", # set by bumpversion
author="Drew Shafer",
url="https://salesforce.com",
description="Simple, readable, declarative APIs for Django",
Expand Down