Skip to content
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.

Commit

Permalink
v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aheuermann committed Jun 7, 2016
1 parent 8aa5297 commit 04e67a1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.2.0

* Fix where text types would be cast to null when empty. [#146](https://github.com/C2FO/patio/pull/146)

# 1.1.1

* Adding `patio.parseInt8` and `patio.defaultPrimaryKeyType` options.
Expand Down
4 changes: 4 additions & 0 deletions docs/History.html
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,10 @@



<h1 id="1-2-0">1.2.0</h1>
<ul>
<li>Fix where text types would be cast to null when empty. <a href="https://github.com/C2FO/patio/pull/146">#146</a></li>
</ul>
<h1 id="1-1-1">1.1.1</h1>
<ul>
<li>Adding <code>patio.parseInt8</code> and <code>patio.defaultPrimaryKeyType</code> options.</li>
Expand Down
2 changes: 1 addition & 1 deletion docs/patio_sql_JsonArray.html
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ <h3>Constructor</h3>
<em>Source</em>
<pre class="prettyprint linenums lang-js">
function (arr){
if (!this instanceof JsonArray) {
if (!(this instanceof JsonArray)) {
return new JsonArray(arr);
}
Array.call(this);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "patio",
"description": "Patio query engine and ORM",
"version": "1.1.1",
"version": "1.2.0",
"keywords": [
"ORM",
"object relation mapper",
Expand Down

0 comments on commit 04e67a1

Please sign in to comment.