diff --git a/CHANGELOG b/CHANGELOG index 0d22244..fdc898f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -28,6 +28,7 @@ v0.9.17 - A schema's parent's fields should be included properly v0.9.18 - Should be able to use @alias and @omit*** or JSON.Raw v0.9.19 - Fix arguments in @omitif declarations not working properly v0.9.20 - Strings were being received with quotes attached via the toString functionality. Removed that. +v0.9.21 - Fix #89 [UNRELEASED] v1.0.0 - Allow nullable primitives diff --git a/README.md b/README.md index 0509f44..36c0eab 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ __| || __|| || | | ___ | _ || __| | | ||__ || | || | | ||___|| ||__ | |_____||_____||_____||_|___| |__|__||_____| -v0.9.20 +v0.9.21 diff --git a/package.json b/package.json index cbef78e..602c7ae 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "json-as", - "version": "0.9.20", + "version": "0.9.21", "description": "The only JSON library you'll need for AssemblyScript. SIMD enabled", "types": "assembly/index.ts", "author": "Jairus Tanaka", diff --git a/transform/package.json b/transform/package.json index 892ccee..b567c69 100644 --- a/transform/package.json +++ b/transform/package.json @@ -1,6 +1,6 @@ { "name": "@json-as/transform", - "version": "0.9.20", + "version": "0.9.21", "description": "The only JSON library you'll need for AssemblyScript. SIMD enabled", "main": "./lib/index.js", "author": "Jairus Tanaka",