Skip to content

Commit

Permalink
Prepare version 0.2.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Mar 8, 2016
1 parent eaaa443 commit 5f7772b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
Change Log
==========

Version 0.2.1 *(2015-03-07)*
Version 0.2.2 *(2016-03-07)*
----------------------------

* New: Compile-time validation of the columns used by insert, update, delete, index, and trigger statements.
* Fix: Don't crash IDE plugin on file move/create.


Version 0.2.1 *(2016-03-07)*
----------------------------

* New: Ctrl+`/` (Cmd+`/` on OSX) toggles comment of the selected line(s).
* New: Compile-time validation of the columns used by SQL queries.
* Fix: Support Windows paths in both the IDE and Gradle plugin.


Version 0.2.0 *(2015-02-29)*
Version 0.2.0 *(2016-02-29)*
----------------------------

* New: Added copy constructor to Marshal class.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.squareup.sqldelight:gradle-plugin:0.2.1'
classpath 'com.squareup.sqldelight:gradle-plugin:0.2.2'
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.squareup.sqldelight
VERSION_NAME=0.2.2-SNAPSHOT
VERSION_NAME=0.2.2

POM_URL=https://github.com/square/sqldelight/
POM_SCM_URL=https://github.com/square/sqldelight/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@

<change-notes><![CDATA[
<p>
0.2.2
<ul>
<li>New: Compile-time validation of the columns used by insert, update, delete, index, and trigger statements.</li>
<li>Fix: Don't crash IDE plugin on file move/create.</li>
</ul>
</p>
<p>
0.2.1
<ul>
<li>New: Ctrl+`/` (Cmd+`/` on OSX) toggles comment of the selected line(s).</li>
Expand Down

0 comments on commit 5f7772b

Please sign in to comment.