Skip to content

Commit 47f06b0

Browse files
committed
tidying up changelog
1 parent 61e2ede commit 47f06b0

File tree

1 file changed

+32
-31
lines changed

1 file changed

+32
-31
lines changed

CHANGES

Lines changed: 32 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ generating forms and serialisers.
2323

2424
0.12.4
2525
------
26-
Using orjson for JSON serialisation when using the output(as_json=True) clause.
27-
It supports more Python types than ujson.
26+
Using orjson for JSON serialisation when using the ``output(as_json=True)``
27+
clause. It supports more Python types than ujson.
2828

2929
0.12.3
3030
------
31-
Improved `piccolo user create` command - defaults the username to the current
31+
Improved ``piccolo user create`` command - defaults the username to the current
3232
system user.
3333

3434
0.12.2
3535
------
36-
Fixing bug when sorting 'extra_definitions' in auto migrations.
36+
Fixing bug when sorting ``extra_definitions`` in auto migrations.
3737

3838
0.12.1
3939
------
@@ -118,15 +118,15 @@ Auto migrations can now run backwards.
118118
0.10.4
119119
------
120120
Fixing some typos with ``Table`` imports. Showing a traceback when piccolo_conf
121-
can't be found by engine_finder.
121+
can't be found by ``engine_finder``.
122122

123123
0.10.3
124124
------
125125
Adding missing jinja templates to setup.py.
126126

127127
0.10.2
128128
------
129-
Fixing a bug when using 'piccolo project new' in a new project.
129+
Fixing a bug when using ``piccolo project new`` in a new project.
130130

131131
0.10.1
132132
------
@@ -139,15 +139,15 @@ Using targ for the CLI. Refactored some core code into apps.
139139
0.9.3
140140
-----
141141
Suppressing exceptions when trying to find the Postgres version, to avoid
142-
an ImportError when importing piccolo_conf.py.
142+
an ``ImportError`` when importing `piccolo_conf.py`.
143143

144144
0.9.2
145145
-----
146-
.first() bug fix.
146+
``.first()`` bug fix.
147147

148148
0.9.1
149149
-----
150-
Auto migration fixes, and .first() method now returns None is no match is
150+
Auto migration fixes, and ``.first()`` method now returns None is no match is
151151
found.
152152

153153
0.9.0
@@ -164,69 +164,70 @@ Fixing release issue.
164164

165165
0.8.1
166166
-----
167-
Improved transaction support - can now use a context manager. Added Secret,
168-
BigInt and SmallInt column types. Foreign keys can now reference the parent
169-
table.
167+
Improved transaction support - can now use a context manager. Added ``Secret``,
168+
``BigInt`` and ``SmallInt`` column types. Foreign keys can now reference the
169+
parent table.
170170

171171
0.8.0
172172
-----
173173
Fixing bug when joining across several tables. Can pass values directly into
174-
the Table.update method. Added 'if_not_exists' option when creating a table.
174+
the ``Table.update`` method. Added ``if_not_exists`` option when creating a
175+
table.
175176

176177
0.7.7
177178
-----
178179
Column sequencing matches the definition order.
179180

180181
0.7.6
181182
-----
182-
Supporting ON DELETE and ON UPDATE for foreign keys. Recording reverse foreign
183-
key relationships.
183+
Supporting `ON DELETE` and `ON UPDATE` for foreign keys. Recording reverse
184+
foreign key relationships.
184185

185186
0.7.5
186187
-----
187-
Make response_handler async. Made it easier to rename columns.
188+
Made ``response_handler`` async. Made it easier to rename columns.
188189

189190
0.7.4
190191
-----
191192
Bug fixes and dependency updates.
192193

193194
0.7.3
194195
-----
195-
Adding missing __int__.py file.
196+
Adding missing `__int__.py` file.
196197

197198
0.7.2
198199
-----
199200
Changed migration import paths.
200201

201202
0.7.1
202203
-----
203-
Added remove_db_file method to SQLiteEngine - makes testing easier.
204+
Added ``remove_db_file`` method to ``SQLiteEngine`` - makes testing easier.
204205

205206
0.7.0
206207
-----
207-
Renamed `create` to `create_table`, and can register commands via
208+
Renamed ``create`` to ``create_table``, and can register commands via
208209
`piccolo_conf`.
209210

210211
0.6.1
211212
-----
212-
Adding missing __init__.py files.
213+
Adding missing `__init__.py` files.
213214

214215
0.6.0
215216
-----
216-
Moved BaseUser. Migration refactor.
217+
Moved ``BaseUser``. Migration refactor.
217218

218219
0.5.2
219220
-----
220-
Moved drop table under alter - to help prevent accidental drops.
221+
Moved drop table under ``Alter`` - to help prevent accidental drops.
221222

222223
0.5.1
223224
-----
224-
Added 'batch' support.
225+
Added ``batch`` support.
225226

226227
0.5.0
227228
-----
228-
Refactored the Table Metaclass - much simpler now. Scoped more of the
229-
attributes on Column to avoid name clashes. Added engine_finder to make
229+
Refactored the ``Table`` Metaclass - much simpler now. Scoped more of the
230+
attributes on ``Column`` to avoid name clashes. Added ``engine_finder`` to make
230231
database configuration easier.
231232

232233
0.4.1
@@ -239,19 +240,19 @@ Refactored to improve code completion, along with bug fixes.
239240

240241
0.3.7
241242
-----
242-
Allowing Update queries in SQLite
243+
Allowing ``Update`` queries in SQLite
243244

244245
0.3.6
245246
-----
246-
Falling back to LIKE instead of ILIKE for SQLite
247+
Falling back to `LIKE` instead of `ILIKE` for SQLite
247248

248249
0.3.5
249250
-----
250-
Renamed User to BaseUser.
251+
Renamed ``User`` to ``BaseUser``.
251252

252253
0.3.4
253254
-----
254-
Added ilike.
255+
Added ``ilike``.
255256

256257
0.3.3
257258
-----
@@ -272,8 +273,8 @@ Basic SQLite support - mostly for playground.
272273

273274
0.2
274275
---
275-
Using QueryString internally to represent queries, instead of raw strings, to
276-
harden against SQL injection.
276+
Using ``QueryString`` internally to represent queries, instead of raw strings,
277+
to harden against SQL injection.
277278

278279
0.1.2
279280
-----

0 commit comments

Comments
 (0)