Skip to content

Commit 0c1f762

Browse files
authored
Merge pull request #26 from caravancoop/release/v0.8
Release v0.8
2 parents 463696a + 0ef0d68 commit 0c1f762

File tree

6 files changed

+70
-7
lines changed

6 files changed

+70
-7
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
steps:
6262
- checkout
6363
- restore_cache:
64-
key: rest-auth-toolkit-check-v1
64+
key: rest-auth-toolkit-check-v2
6565
- run:
6666
name: Install CI tools
6767
command: |
@@ -71,7 +71,7 @@ jobs:
7171
name: Check packaging and dependencies
7272
command: venv/bin/tox -e pkg
7373
- save_cache:
74-
key: rest-auth-toolkit-check-v1
74+
key: rest-auth-toolkit-check-v2
7575
paths:
7676
- venv
7777
- .tox

MANIFEST.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
include LICENSE README.md tox.ini requirements.txt
22

3-
recursive-include rest_auth_toolkit *.txt
4-
recursive-include rest_auth_toolkit *.html
3+
recursive-include rest_auth_toolkit *.txt *.html
4+
recursive-include rest_auth_toolkit *.po *.mo
55

66
# ship demo in sdist, but not in wheels
77
recursive-include demo *.py *.in *.txt *.html
1.02 KB
Binary file not shown.
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3+
# This file is distributed under the same license as the PACKAGE package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
#, fuzzy
7+
msgid ""
8+
msgstr ""
9+
"Project-Id-Version: PACKAGE VERSION\n"
10+
"Report-Msgid-Bugs-To: \n"
11+
"POT-Creation-Date: 2018-06-06 16:41-0400\n"
12+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14+
"Language-Team: LANGUAGE <[email protected]>\n"
15+
"Language: \n"
16+
"MIME-Version: 1.0\n"
17+
"Content-Type: text/plain; charset=UTF-8\n"
18+
"Content-Transfer-Encoding: 8bit\n"
19+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
20+
21+
#: admin.py:9
22+
msgid "Personal info"
23+
msgstr "Informations personnelles"
24+
25+
#: admin.py:10
26+
msgid "Permissions"
27+
msgstr "Permissions"
28+
29+
#: admin.py:12
30+
msgid "Important dates"
31+
msgstr "Dates importantes"
32+
33+
#: models.py:29
34+
msgid "email address"
35+
msgstr "adresse électronique"
36+
37+
#: models.py:36 models.py:56 models.py:98
38+
msgid "user"
39+
msgstr "utilisateur"
40+
41+
#: models.py:37
42+
msgid "users"
43+
msgstr "utilisateurs"
44+
45+
#: models.py:57
46+
msgid "confirmed"
47+
msgstr "confirmé"
48+
49+
#: models.py:95
50+
msgid "key"
51+
msgstr "clé"
52+
53+
#: serializers.py:42
54+
msgid "Invalid email or password"
55+
msgstr "Adresse électronique ou mot de passe invalide"
56+
57+
#: templates/rest_auth_toolkit/email_confirmation.html:11
58+
#: templates/rest_auth_toolkit/email_confirmation.txt:4
59+
msgid "Follow this link to validate your email:"
60+
msgstr "Suivez ce lien pour valider votre adresse électronique:"
61+
62+
#: views.py:122
63+
msgid "Confirm your email address"
64+
msgstr "Confirmez votre adresse électronique"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup(
1717
name='Rest-Framework-Auth-Toolkit',
18-
version='0.7',
18+
version='0.8',
1919
description='Simple, flexible signup and login for APIs',
2020
long_description=long_description,
2121
url='https://github.com/caravancoop/rest-framework-auth-toolkit',

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ show-source = True
1313
deps =
1414
flake8
1515
commands =
16-
python -c "import sys; print(sys.version_info)"
1716
flake8 rest_auth_toolkit
1817
flake8 demo
1918

@@ -26,5 +25,5 @@ deps =
2625
safety
2726
commands =
2827
python setup.py check -r -s -m
29-
check-manifest -v --ignore .circleci,.circleci/*
28+
check-manifest -v --ignore .circleci,.circleci/* --ignore-bad-ideas '*.mo'
3029
safety check

0 commit comments

Comments
 (0)