Skip to content

Commit f2c8bda

Browse files
committed
Changelog
1 parent 137788e commit f2c8bda

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
0.14.0 (tbd), [diff][diff-0.14.0]
22
========================================
33

4+
* Support more complex schema changes and queries ([#1073][], [#1146][] [#1148][])
45
* Support `ATTACH`/`DETACH` ([#30][], [#1142][])
56
* Support `WITH` clause ([#1139][])
67
* Add `Value` conformance for `NSURL` ([#1110][], [#1141][])
@@ -160,6 +161,7 @@
160161
[#866]: https://github.com/stephencelis/SQLite.swift/pull/866
161162
[#881]: https://github.com/stephencelis/SQLite.swift/pull/881
162163
[#919]: https://github.com/stephencelis/SQLite.swift/pull/919
164+
[#1073]: https://github.com/stephencelis/SQLite.swift/issues/1073
163165
[#1075]: https://github.com/stephencelis/SQLite.swift/pull/1075
164166
[#1077]: https://github.com/stephencelis/SQLite.swift/issues/1077
165167
[#1094]: https://github.com/stephencelis/SQLite.swift/pull/1094
@@ -185,3 +187,5 @@
185187
[#1141]: https://github.com/stephencelis/SQLite.swift/pull/1141
186188
[#1142]: https://github.com/stephencelis/SQLite.swift/pull/1142
187189
[#1144]: https://github.com/stephencelis/SQLite.swift/pull/1144
190+
[#1146]: https://github.com/stephencelis/SQLite.swift/pull/1146
191+
[#1148]: https://github.com/stephencelis/SQLite.swift/pull/1148

Documentation/Index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1514,7 +1514,7 @@ The `SchemaChanger` provides an alternative API to add new columns:
15141514
let newColumn = ColumnDefinition(
15151515
name: "new_text_column",
15161516
type: .TEXT,
1517-
nullable: true,
1517+
nullable: true,
15181518
defaultValue: .stringLiteral("foo")
15191519
)
15201520

0 commit comments

Comments
 (0)