Skip to content

Commit 4668554

Browse files
committed
added CHANGES to main docs
1 parent c107b68 commit 4668554

File tree

3 files changed

+50
-44
lines changed

3 files changed

+50
-44
lines changed

CHANGES

Lines changed: 47 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,187 +1,190 @@
1+
Changes
2+
=======
3+
14
0.11.0
2-
======
5+
------
36
Added Numeric and Real column types.
47

58
0.10.8
6-
======
9+
------
710
Fixing a bug where Postgres versions without a patch number couldn't be parsed.
811

912
0.10.7
10-
======
13+
------
1114
Improving release script.
1215

1316
0.10.6
14-
======
17+
------
1518
Sorting out packaging issue - old files were appearing in release.
1619

1720
0.10.5
18-
======
21+
------
1922
Auto migrations can now run backwards.
2023

2124
0.10.4
22-
======
25+
------
2326
Fixing some typos with Table imports. Showing a traceback when piccolo_conf
2427
can't be found by engine_finder.
2528

2629
0.10.3
27-
======
30+
------
2831
Adding missing jinja templates to setup.py.
2932

3033
0.10.2
31-
======
34+
------
3235
Fixing a bug when using 'piccolo project new' in a new project.
3336

3437
0.10.1
35-
======
38+
------
3639
Fixing bug with enum default values.
3740

3841
0.10.0
39-
======
42+
------
4043
Using targ for the CLI. Refactored some core code into apps.
4144

4245
0.9.3
43-
=====
46+
-----
4447
Suppressing exceptions when trying to find the Postgres version, to avoid
4548
an ImportError when importing piccolo_conf.py.
4649

4750
0.9.2
48-
=====
51+
-----
4952
.first() bug fix.
5053

5154
0.9.1
52-
=====
55+
-----
5356
Auto migration fixes, and .first() method now returns None is no match is
5457
found.
5558

5659
0.9.0
57-
=====
60+
-----
5861
Added support for auto migrations.
5962

6063
0.8.3
61-
=====
64+
-----
6265
Can use operators in update queries, and fixing 'new' migration command.
6366

6467
0.8.2
65-
=====
68+
-----
6669
Fixing release issue.
6770

6871
0.8.1
69-
=====
72+
-----
7073
Improved transaction support - can now use a context manager. Added Secret,
7174
BigInt and SmallInt column types. Foreign keys can now reference the parent
7275
table.
7376

7477
0.8.0
75-
=====
78+
-----
7679
Fixing bug when joining across several tables. Can pass values directly into
7780
the Table.update method. Added 'if_not_exists' option when creating a table.
7881

7982
0.7.7
80-
=====
83+
-----
8184
Column sequencing matches the definition order.
8285

8386
0.7.6
84-
=====
87+
-----
8588
Supporting ON DELETE and ON UPDATE for foreign keys. Recording reverse foreign
8689
key relationships.
8790

8891
0.7.5
89-
=====
92+
-----
9093
Make response_handler async. Made it easier to rename columns.
9194

9295
0.7.4
93-
=====
96+
-----
9497
Bug fixes and dependency updates.
9598

9699
0.7.3
97-
=====
100+
-----
98101
Adding missing __int__.py file.
99102

100103
0.7.2
101-
=====
104+
-----
102105
Changed migration import paths.
103106

104107
0.7.1
105-
=====
108+
-----
106109
Added remove_db_file method to SQLiteEngine - makes testing easier.
107110

108111
0.7.0
109-
=====
112+
-----
110113
Renamed `create` to `create_table`, and can register commands via
111114
`piccolo_conf`.
112115

113116
0.6.1
114-
=====
117+
-----
115118
Adding missing __init__.py files.
116119

117120
0.6.0
118-
=====
121+
-----
119122
Moved BaseUser. Migration refactor.
120123

121124
0.5.2
122-
=====
125+
-----
123126
Moved drop table under alter - to help prevent accidental drops.
124127

125128
0.5.1
126-
=====
129+
-----
127130
Added 'batch' support.
128131

129132
0.5.0
130-
=====
133+
-----
131134
Refactored the Table Metaclass - much simpler now. Scoped more of the
132135
attributes on Column to avoid name clashes. Added engine_finder to make
133136
database configuration easier.
134137

135138
0.4.1
136-
=====
139+
-----
137140
SQLite is now returning datetime objects for timestamp fields.
138141

139142
0.4.0
140-
=====
143+
-----
141144
Refactored to improve code completion, along with bug fixes.
142145

143146
0.3.7
144-
=====
147+
-----
145148
Allowing Update queries in SQLite
146149

147150
0.3.6
148-
=====
151+
-----
149152
Falling back to LIKE instead of ILIKE for SQLite
150153

151154
0.3.5
152-
=====
155+
-----
153156
Renamed User to BaseUser.
154157

155158
0.3.4
156-
=====
159+
-----
157160
Added ilike.
158161

159162
0.3.3
160-
=====
163+
-----
161164
Added value types to columns.
162165

163166
0.3.2
164-
=====
167+
-----
165168
Default values infer the engine type.
166169

167170
0.3.1
168-
=====
171+
-----
169172
Update click version.
170173

171174
0.3
172-
===
175+
---
173176
Tweaked API to support more auto completion. Join support in where clause.
174177
Basic SQLite support - mostly for playground.
175178

176179
0.2
177-
===
180+
---
178181
Using QueryString internally to represent queries, instead of raw strings, to
179182
harden against SQL injection.
180183

181184
0.1.2
182-
=====
185+
-----
183186
Allowing joins across multiple tables.
184187

185188
0.1.1
186-
=====
189+
-----
187190
Added playground.

docs/src/index.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Welcome to Piccolo's documentation!
1717
piccolo/playground/index
1818
piccolo/ecosystem/index
1919
piccolo/contributing/index
20+
piccolo/changes/index
21+
2022

2123
Indices and tables
2224
==================

docs/src/piccolo/changes/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.. include:: ../../../../CHANGES

0 commit comments

Comments
 (0)