8000 Updated to 1.0b2 · ahknight/drf-httpsig@b1b2b3d · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

Commit b1b2b3d

Browse files
committed
Updated to 1.0b2
* Added versioneer. * Updated requirements to use latest httpsig. * Added "setup.py test" and tox support. * Fixed a unit test.
1 parent ffed9f8 commit b1b2b3d

File tree

14 files changed

+987
-41
lines changed

14 files changed

+987
-41
lines changed

.gitignore

Lines changed: 4 additions & 2 del 8000 etions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
*~
1+
*.egg
22
*.pyc
3-
dist/
3+
*~
4+
.tox
45
build/
6+
dist/
57
drf_httpsig.egg-info/

.travis.yml

Lines changed: 0 additions & 9 deletions
This file was deleted.

CHANGES.txt renamed to CHANGES.rst

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,26 @@
1-
v1.0, 2014-Jun-27
2-
1+
drf-httpsig Changes
2+
-------------------
3+
4+
v1.0b2 (2014-Jul-01)
5+
~~~~~~~~~~~~~~~~~~~~
6+
* Added versioneer.
7+
* Updated requirements to use latest httpsig.
8+
* Added "setup.py test" and tox support.
9+
* Fixed a unit test.
10+
11+
v1.0b1 (2014-Jun-27)
12+
~~~~~~~~~~~~~~~~~~~~
313
* Renamed to drf-httpsig because I don't hate my hands.
414
* Updated requirements versions to be more sane.
515
* Switched to a different branch for http_signature.
616
* Removed API_KEY_HEADER in favor of the keyId, per spec.
717
* Cleaned up the repo a bit.
818
* Cleaned up the code a bit.
919

20+
21+
restframework-httpsignature (previous)
22+
--------------------------------------
23+
1024
v0.1.5, 20140613 -- Document installation issue
1125

1226
* Document workaround on installation problems.

MANIFEST

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# file GENERATED by distutils, do NOT edit
2+
CHANGES.rst
3+
LICENSE.txt
4+
README
5+
README.rst
6+
requirements.txt
7+
setup.py
8+
test_settings.py
9+
versioneer.py
10+
drf_httpsig/__init__.py
11+
drf_httpsig/_version.py
12+
drf_httpsig/authentication.py
13+
drf_httpsig/models.py
14+
drf_httpsig/tests.py

MANIFEST.in

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1-
include *.txt
2-
include *.rst
1+
include README.rst
2+
include CHANGES.rst
3+
include LICENSE.txt
4+
include versioneer.py
5+
include requirements.txt
6+
include test_settings.py

README

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
README.rst

REQUIREMENTS.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
# Known to work with these versions. Versions bracketed for safety.
2+
django>=1.6,<1.7
13
djangorestframework>=2.3,<2.4
2-
-e git+https://github.com/ahknight/httpsig.git#egg=httpsig
4+
httpsig>=1.0b2

TODO.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

drf_httpsig/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
__version__ = '1.0b1'

drf_httpsig/_version.py

Whitespace-only changes.

0 commit comments

Comments
 (0)
0