Skip to content

Commit 9e67fa5

Browse files
chore: bump version to 0.0.3
1 parent 2b46cfa commit 9e67fa5

File tree

4 files changed

+1026
-19
lines changed

4 files changed

+1026
-19
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
## 0.0.3 (2023-01-16)
2+
3+
4+
### Bug Fixes
5+
6+
* **effect:** fix reportPrivateImportUsage. ([45094be](https://github.com/frederick-wang/pyreactivity/commit/45094becd4c4e2890cc0a5644b7937be2276ae47))
7+
* explicitly export symbols in modules. ([c712d74](https://github.com/frederick-wang/pyreactivity/commit/c712d740a0bd98d9fa5fb19bd8cdd3682584b79d))
8+
* **reactive:** add missing type and method ([e25b026](https://github.com/frederick-wang/pyreactivity/commit/e25b026ef9b4a4919779add401995a53274ecd13))
9+
* **reactive:** Fix the bug __len__ isn't tracked. ([0fc98a3](https://github.com/frederick-wang/pyreactivity/commit/0fc98a3dee3e3acf75956aa9c970101b649b08e9))
10+
* **reactive:** items() and values() of dict fixed. ([08dceb2](https://github.com/frederick-wang/pyreactivity/commit/08dceb2bcf45e764e15b892047c619471590af59))
11+
* **reactive:** Lost reactivity after assigning. ([4f00443](https://github.com/frederick-wang/pyreactivity/commit/4f0044304db7a09cc2a6c253377b35fb3fb6fee7))
12+
* **reactive:** reactive() return type fixed. ([6585650](https://github.com/frederick-wang/pyreactivity/commit/6585650e49f4b66300242fea05644a112b1461b1))
13+
* **reactive:** TypeError message typo fixed. ([eeaa2e5](https://github.com/frederick-wang/pyreactivity/commit/eeaa2e52fb63bbdcedb91e2a6f891fcee7962de8))
14+
* **ref:** overload the ref() function ([97e0d9e](https://github.com/frederick-wang/pyreactivity/commit/97e0d9ee25322e237b863662fb34d6c33961da11))
15+
* **tests:** typo fixed. ([3695bb2](https://github.com/frederick-wang/pyreactivity/commit/3695bb2314d53dd73a4ffb3dd7706c770dbc9651))
16+
17+
18+
### Features
19+
20+
* **patches:** add support of ref for json.dumps ([9de85d9](https://github.com/frederick-wang/pyreactivity/commit/9de85d9b5b5b6f7ca4db52ec073da05c227a7e31))
21+
* **reactive:** new util methods added. ([637b593](https://github.com/frederick-wang/pyreactivity/commit/637b5936d3a82bfaacdddc55419dbdd2ced82b68))
22+
* **tests:** add a new case to test_reactive. ([246a2bb](https://github.com/frederick-wang/pyreactivity/commit/246a2bbe91ad69be54e6533f82d3b58a13c6277c))
23+
24+
25+

package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
22
"name": "pyreactivity",
3-
"version": "1.0.0",
3+
"version": "0.0.3",
44
"description": "A Python package for reactivity like Vue.js.",
55
"main": "index.js",
66
"scripts": {
77
"docs:dev": "vuepress dev docs",
8-
"docs:build": "vuepress build docs"
8+
"docs:build": "vuepress build docs",
9+
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w -r 0 -s && git add CHANGELOG.md"
910
},
1011
"keywords": [],
1112
"author": "Zhaoji Wang",
@@ -14,5 +15,9 @@
1415
"@vuepress/client": "2.0.0-beta.60",
1516
"vue": "^3.2.45",
1617
"vuepress": "2.0.0-beta.60"
18+
},
19+
"dependencies": {
20+
"conventional-changelog": "^3.1.25",
21+
"conventional-changelog-cli": "^2.2.2"
1722
}
1823
}

0 commit comments

Comments
 (0)