Skip to content

Commit bb20629

Browse files
committed
add dates to changelog
1 parent 10a039b commit bb20629

File tree

1 file changed

+52
-52
lines changed

1 file changed

+52
-52
lines changed

doc/source/changelog.rst

Lines changed: 52 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@
22
Change Log
33
==========
44

5-
v2.1.3
6-
======
5+
v2.1.3 (15-JUL-2024)
6+
====================
77

88
* Fixed `Move from django_typer to django_typer.management broke doc reference links. <https://github.com/bckohan/django-typer/issues/98>`_
99
* Implemented `Support Django 5.1 <https://github.com/bckohan/django-typer/issues/97>`_
1010

11-
v2.1.2
12-
======
11+
v2.1.2 (07-JUN-2024)
12+
====================
1313

1414
* Fixed `Type hint kwargs to silence pylance warnings about partially unknown types <https://github.com/bckohan/django-typer/issues/93>`_
1515

16-
v2.1.1
17-
======
16+
v2.1.1 (06-JUN-2024)
17+
====================
1818

1919
* Fixed `handle = None does not work for mypy to silence type checkers <https://github.com/bckohan/django-typer/issues/90>`_
2020

21-
v2.1.0
22-
======
21+
v2.1.0 (05-JUN-2024)
22+
====================
2323

2424
.. warning::
2525

@@ -39,19 +39,19 @@ v2.1.0
3939
* Implemented `Move core code out of __init__.py into management/__init__.py <https://github.com/bckohan/django-typer/issues/81>`_
4040
* Fixed `Typer(help="") doesnt work. <https://github.com/bckohan/django-typer/issues/78>`_
4141

42-
v2.0.2
43-
======
42+
v2.0.2 (03-JUN-2024)
43+
====================
4444

4545
* Fixed `class help attribute should be type hinted to allow a lazy translation string. <https://github.com/bckohan/django-typer/issues/85>`_
4646

4747

48-
v2.0.1
49-
======
48+
v2.0.1 (31-MAY-2024)
49+
====================
5050

5151
* Fixed `Readme images are broken. <https://github.com/bckohan/django-typer/issues/77>`_
5252

53-
v2.0.0
54-
======
53+
v2.0.0 (31-MAY-2024)
54+
====================
5555

5656
This major version release, includes an extensive internal refactor, numerous bug fixes and the
5757
addition of a plugin-based extension pattern.
@@ -75,19 +75,19 @@ addition of a plugin-based extension pattern.
7575
* Implemented `Add completer/parser for GenericIPAddressField. <https://github.com/bckohan/django-typer/issues/12>`_
7676

7777

78-
v1.1.2
79-
======
78+
v1.1.2 (22-APR-2024)
79+
====================
8080

8181
* Fixed `Overridden common Django arguments fail to pass through when passed through call_command <https://github.com/bckohan/django-typer/issues/54>`_
8282

83-
v1.1.1
84-
======
83+
v1.1.1 (11-APR-2024)
84+
====================
8585

8686
* Implemented `Fix pyright type checking and add to CI <https://github.com/bckohan/django-typer/issues/51>`_
8787
* Implemented `Convert CONTRIBUTING.rst to markdown <https://github.com/bckohan/django-typer/issues/50>`_
8888

89-
v1.1.0
90-
======
89+
v1.1.0 (03-APR-2024)
90+
====================
9191

9292
* Implemented `Convert readme to markdown. <https://github.com/bckohan/django-typer/issues/48>`_
9393
* Fixed `typer 0.12.0 breaks django_typer 1.0.9 <https://github.com/bckohan/django-typer/issues/47>`_
@@ -98,41 +98,41 @@ v1.0.9 (yanked)
9898

9999
* Fixed `Support typer 0.12.0 <https://github.com/bckohan/django-typer/issues/46>`_
100100

101-
v1.0.8
102-
======
101+
v1.0.8 (26-MAR-2024)
102+
====================
103103

104104
* Fixed `Support typer 0.10 and 0.11 <https://github.com/bckohan/django-typer/issues/45>`_
105105

106-
v1.0.7
107-
======
106+
v1.0.7 (17-MAR-2024)
107+
====================
108108

109109
* Fixed `Helps throw an exception when invoked from an absolute path that is not relative to the getcwd() <https://github.com/bckohan/django-typer/issues/44>`_
110110

111-
v1.0.6
112-
======
111+
v1.0.6 (14-MAR-2024)
112+
====================
113113

114114
* Fixed `prompt options on groups still prompt when given as named parameters on call_command <https://github.com/bckohan/django-typer/issues/43>`_
115115

116116

117-
v1.0.5
118-
======
117+
v1.0.5 (14-MAR-2024)
118+
====================
119119

120120
* Fixed `Options with prompt=True are prompted twice <https://github.com/bckohan/django-typer/issues/42>`_
121121

122122

123-
v1.0.4
124-
======
123+
v1.0.4 (13-MAR-2024)
124+
====================
125125

126126
* Fixed `Help sometimes shows full script path in Usage: when it shouldnt. <https://github.com/bckohan/django-typer/issues/40>`_
127127
* Fixed `METAVAR when ModelObjectParser supplied should default to model name <https://github.com/bckohan/django-typer/issues/39>`_
128128

129-
v1.0.3
130-
======
129+
v1.0.3 (08-MAR-2024)
130+
====================
131131

132132
* Fixed `Incomplete typing info for @command decorator <https://github.com/bckohan/django-typer/issues/33>`_
133133

134-
v1.0.2
135-
======
134+
v1.0.2 (05-MAR-2024)
135+
====================
136136

137137
* Fixed `name property on TyperCommand is too generic and should be private. <https://github.com/bckohan/django-typer/issues/37>`_
138138
* Fixed `When usage errors are thrown the help output should be that of the subcommand invoked not the parent group. <https://github.com/bckohan/django-typer/issues/36>`_
@@ -143,50 +143,50 @@ v1.0.2
143143
* Fixed `Missing subcommand produces stack trace without --traceback. <https://github.com/bckohan/django-typer/issues/27>`_
144144
* Fixed `Allow handle() to be an initializer. <https://github.com/bckohan/django-typer/issues/24>`_
145145

146-
v1.0.1
147-
======
146+
v1.0.1 (29-FEB-2024)
147+
====================
148148

149149
* Fixed `shell_completion broken for click < 8.1 <https://github.com/bckohan/django-typer/issues/21>`_
150150

151-
v1.0.0
152-
======
151+
v1.0.0 (26-FEB-2024)
152+
====================
153153

154154
* Initial production/stable release.
155155

156-
v0.6.1b
157-
=======
156+
v0.6.1b (24-FEB-2024)
157+
=====================
158158

159159
* Incremental beta release - this is also the second release candidate for version 1.
160160
* Peg typer version to 0.9.x
161161

162-
v0.6.0b
163-
=======
162+
v0.6.0b (23-FEB-2024)
163+
=====================
164164

165165
* Incremental beta release - this is also the first release candidate for version 1.
166166

167167

168-
v0.5.0b
169-
=======
168+
v0.5.0b (31-JAN-2024)
169+
=====================
170170

171171
* Incremental Beta Release
172172

173-
v0.4.0b
174-
=======
173+
v0.4.0b (08-JAN-2024)
174+
=====================
175175

176176
* Incremental Beta Release
177177

178-
v0.3.0b
179-
=======
178+
v0.3.0b (06-JAN-2024)
179+
=====================
180180

181181
* Incremental Beta Release
182182

183-
v0.2.0b
184-
=======
183+
v0.2.0b (04-JAN-2024)
184+
=====================
185185

186186
* Incremental Beta Release
187187

188188

189-
v0.1.0b
190-
=======
189+
v0.1.0b (05-DEC-2023)
190+
=====================
191191

192192
* Initial Release (Beta)

0 commit comments

Comments
 (0)