From 4038236326fcac795ed4ae6153a7ec47716df314 Mon Sep 17 00:00:00 2001 From: Tomasz Ducin <tomasz.ducin@gmail.com> Date: Mon, 1 Aug 2016 22:19:46 +0200 Subject: [PATCH] preparing for 0.3.5 --- CHANGELOG.md | 8 ++++++++ bower.json | 2 +- lib/index.js | Bin 419 -> 442 bytes package.json | 2 +- ts/index.d.ts | 1 + ts/index.ts | 2 ++ 6 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ecb34b77..7a4a5fb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ UPCOMING: changes: - faker and chance are not longer required as dependencies +v0.3.5 + date: 2016-08-01 + changes: + - non-required attributes missing in objects bug fixed + - force typecast when external generator returns unexpected value + - unit tests added + - schema tests added + - dependency update v0.3.2 date: ? changes: diff --git a/bower.json b/bower.json index a9eff370..e2ef793a 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "json-schema-faker", - "version": "0.3.1", + "version": "0.3.5", "description": "JSON-Schema + fake data generators", "homepage": "http://json-schema-faker.js.org", "main": "dist/json-schema-faker.js", diff --git a/lib/index.js b/lib/index.js index 67a8d60ab8fe5fc200a479042c46ce7bb3896e88..3315008961d3e0f519a05760bfbb09919d121240 100644 GIT binary patch delta 53 zcmZ3?yo-55FQaZ&ahhIPYEf}!ex8D@g1Uj8v7V{AHCJwaN@-52UTQ@_eo;xWf~`VU Iahf$30NP#=7ytkO delta 30 lcmdnRyqI}IFQZs)eoARhs$ObEL4Hw5v4X8aR&km&7XYjk3Wfjx diff --git a/package.json b/package.json index a0f0cb7a..2226fc14 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "json-schema-faker", - "version": "0.3.4", + "version": "0.3.5", "description": "JSON-Schema + fake data generators", "homepage": "http://json-schema-faker.js.org", "main": "index.js", diff --git a/ts/index.d.ts b/ts/index.d.ts index 5a3cde4c..7a38ff4c 100644 --- a/ts/index.d.ts +++ b/ts/index.d.ts @@ -92,6 +92,7 @@ interface jsfAPI { format: Function; option: Function; extend: Function; + version: string; } // quick and dirty overcome diff --git a/ts/index.ts b/ts/index.ts index c64d9a17..5a1bf325 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -17,4 +17,6 @@ jsf.extend = function(name: string, cb: Function) { return jsf; }; +jsf.version = '0.3.5'; + export = jsf; -- GitLab