Skip to content

Commit

Permalink
Update README, fab file and requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
pcraciunoiu committed Sep 26, 2022
1 parent c26df6d commit c6f7863
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,9 @@ Original development was at GreenKahuna (now defunct.)

# Releases

### 0.4.0 - Nov 26, 2021
Adds support for Django 4.1. [issue](https://github.com/skoczen/django-seo-js/pull/42).

### 0.3.5 - Nov 26, 2021
Adds more default user agents to bring things into the present day. [issue](https://github.com/skoczen/django-seo-js/pull/41).

Expand Down
2 changes: 1 addition & 1 deletion django_seo_js/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.3.5"
VERSION = "0.4.0"
7 changes: 5 additions & 2 deletions fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ def tag_release():


def upload_release():
local("python setup.py sdist upload")
local("python setup.py sdist")
local("python setup.py bdist_wheel --universal")
local("twine upload dist/*")
local("rm dist/*")


def release():
Expand Down Expand Up @@ -73,5 +76,5 @@ def deploy_docs():
local("git commit -m 'Auto-update of docs: %s'" % last_commit)
local("git push")
else:
print "No changes to the docs."
print("No changes to the docs.")
local("git checkout %s" % current_branch)
5 changes: 3 additions & 2 deletions requirements.tests.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
fabric
fabric<2
httmock
mock
nose
pep8
tox
tox
twine<2

0 comments on commit c6f7863

Please sign in to comment.