Skip to content

Commit

Permalink
Prepare for release 0.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Feb 29, 2016
1 parent 3e7f494 commit 75aef64
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Change Log
==========

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

* New: Added copy constructor to Marshal class.
* New: Update to Kotlin 1.0 final.
* Fix: Report 'sqldelight' folder structure problems in a non-failing way.
* Fix: Forbid columns named `table_name`. Their generated constant clashes with the table name constant.
* Fix: Ensure IDE plugin generates model classes immediately and regardless of whether `.sq` files were opened.
* Fix: Support Windows paths in both the IDE and Gradle plugin.


Version 0.1.2 *(2016-02-13)*
----------------------------

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.1.2'
classpath 'com.squareup.sqldelight:gradle-plugin:0.2.0'
}
}
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.0-SNAPSHOT
VERSION_NAME=0.2.0

POM_URL=https://github.com/square/sqldelight/
POM_SCM_URL=https://github.com/square/sqldelight/
Expand Down
10 changes: 7 additions & 3 deletions sqldelight-studio-plugin/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,13 @@
]]></description>

<change-notes><![CDATA[
Everythings new.
]]>
</change-notes>
* New: Added copy constructor to Marshal class.
* New: Update to Kotlin 1.0 final.
* Fix: Report 'sqldelight' folder structure problems in a non-failing way.
* Fix: Forbid columns named `table_name`. Their generated constant clashes with the table name constant.
* Fix: Ensure IDE plugin generates model classes immediately and regardless of whether `.sq` files were opened.
* Fix: Support Windows paths in both the IDE and Gradle plugin.
]]></change-notes>

<extensions defaultExtensionNs="com.intellij">
<fileTypeFactory implementation="com.squareup.sqldelight.lang.SqliteFileTypeFactory"/>
Expand Down

0 comments on commit 75aef64

Please sign in to comment.