Skip to content

Commit 50d22df

Browse files
committed
fix #3
1 parent c4c8f05 commit 50d22df

File tree

9 files changed

+130
-120
lines changed

9 files changed

+130
-120
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -158,3 +158,5 @@ cython_debug/
158158
# and can be added to the global gitignore or merged into this file. For a more nuclear
159159
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
160160
#.idea/
161+
162+
**/.DS_Store

django_routines/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from django.core.exceptions import ImproperlyConfigured
2222
from django.utils.functional import Promise
2323

24-
VERSION = (1, 0, 0)
24+
VERSION = (1, 0, 1)
2525

2626
__title__ = "Django Routines"
2727
__version__ = ".".join(str(i) for i in VERSION)

doc/.DS_Store

-6 KB
Binary file not shown.

doc/source/changelog.rst

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Change Log
33
==========
44

5+
v1.0.1
6+
======
7+
8+
* `Help example images dont have the correct usage line. <https://github.com/bckohan/django-routines/issues/3>`_
9+
510

611
v1.0.0
712
======

doc/source/index.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The routine command will read our settings file and generate two subcommands, on
3030
and one called package:
3131

3232
.. typer:: django_routines.management.commands.routine.Command:typer_app:package
33-
:prog: ./manage.py routine
33+
:prog: ./manage.py routine package
3434
:theme: dark
3535
:convert-png: latex
3636

@@ -47,7 +47,7 @@ Now we can run all of our package routines with one command:
4747
The deploy command has several switches that we can enable to run additional commands.
4848

4949
.. typer:: django_routines.management.commands.routine.Command:typer_app:deploy
50-
:prog: ./manage.py routine
50+
:prog: ./manage.py routine deploy
5151
:theme: dark
5252
:convert-png: latex
5353

examples/deploy.svg

+64-64
Loading

examples/package.svg

+49-49
Loading

examples/readme_dict.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,19 @@
1919
"name": "deploy",
2020
"switch_helps": {
2121
"demo": "Load the demo data.",
22-
"initial": "Things to do on the very first deployment on a new server.",
23-
"prepare": "Generate artifacts like migrations and transpiled javascript.",
22+
"initial": "Things to do on the very first deployment on a new "
23+
"server.",
24+
"prepare": "Generate artifacts like migrations and transpiled "
25+
"javascript.",
2426
},
2527
},
2628
"package": {
2729
"commands": [
2830
{"command": "makemigrations"},
2931
{"command": "renderstatic"},
3032
],
31-
"help_text": "Generate pre-package artifacts like migrations and transpiled javascript.",
33+
"help_text": "Generate pre-package artifacts like migrations and "
34+
"transpiled javascript.",
3235
"name": "package",
3336
},
3437
}

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-routines"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
description = "Define named groups of management commands in Django settings files for batched execution."
55
authors = ["Brian Kohan <bckohan@gmail.com>"]
66
license = "MIT"

0 commit comments

Comments
 (0)