From 70740a73ad024c77887b1e55bb71ddab381fe6ab Mon Sep 17 00:00:00 2001 From: Suchita Doshi Date: Mon, 13 Jan 2020 21:16:46 -0800 Subject: [PATCH] Release 0.2.5 --- CHANGELOG.md | 12 ++++++++++++ package.json | 2 +- transforms/tracked-properties/README.md | 19 +++++++++---------- 3 files changed, 22 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e772a1a..e6d53b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## v0.2.5 (2020-01-14) + +#### :bug: Bug Fix +* [#14](https://github.com/ember-codemods/ember-tracked-properties-codemod/pull/14) Add support for readOnly computed property conversion ([@suchitadoshi1987](https://github.com/suchitadoshi1987)) + +#### :memo: Documentation +* [#14](https://github.com/ember-codemods/ember-tracked-properties-codemod/pull/14) Add support for readOnly computed property conversion ([@suchitadoshi1987](https://github.com/suchitadoshi1987)) + +#### Committers: 2 +- Suchita Doshi ([@suchitadoshi1987](https://github.com/suchitadoshi1987)) +- [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) + ## v0.2.4 (2019-12-25) #### :bug: Bug Fix diff --git a/package.json b/package.json index 95d2a84..c840994 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ember-tracked-properties-codemod", - "version": "0.2.4", + "version": "0.2.5", "description": "A codemod for transforming your ember app code to start using `@tracked` properties.", "keywords": [ "codemod-cli", diff --git a/transforms/tracked-properties/README.md b/transforms/tracked-properties/README.md index 0eb06fe..e5343c2 100755 --- a/transforms/tracked-properties/README.md +++ b/transforms/tracked-properties/README.md @@ -9,16 +9,15 @@ npx ember-tracked-properties-codemod path/of/files/ or/some**/*glob.js ## Input / Output - -- [basic-with-prefix-false](#basic-with-prefix-false) -- [basic](#basic) -- [chained-complex-computed](#chained-complex-computed) -- [chained-computed](#chained-computed) -- [complex](#complex) -- [non-computed-decorators](#non-computed-decorators) -- [read-only-computed-decorators](#read-only-computed-decorators) -- [with-tracked](#with-tracked) - +* [basic-with-prefix-false](#basic-with-prefix-false) +* [basic](#basic) +* [chained-complex-computed](#chained-complex-computed) +* [chained-computed](#chained-computed) +* [complex](#complex) +* [non-computed-decorators](#non-computed-decorators) +* [read-only-computed-decorators](#read-only-computed-decorators) +* [with-tracked](#with-tracked) + ##