@alloy-js/python 0.2.0-dev.6 → 0.3.0-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog - @alloy-js/python
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- [#317](https://github.com/alloy-framework/alloy/pull/317) Add an extra line after the ClassDoc
|
|
8
|
+
- [#316](https://github.com/alloy-framework/alloy/pull/316) Add support for floats that end in .0
|
|
9
|
+
- [#282](https://github.com/alloy-framework/alloy/pull/282) `<Unresolved symbol>` include the refkey information for easier debugging
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
- [#302](https://github.com/alloy-framework/alloy/pull/302) Create SingleTypeExpression, refactor FunctionDeclaration, split Enum implementations and split docs components into separate components
|
|
14
|
+
- [#284](https://github.com/alloy-framework/alloy/pull/284) Declaration components' `name` prop and symbol constructors' `name` parameter now allow namekeys. Namekeys are a special kind of refkey which
|
|
15
|
+
takes a name and name options. For example, `namekey("myVariable", { disableNamePolicy: true})` when passed to a declaration component would create a symbol named "myVariable", use the namekey as a refkey, and disable the name policy for that symbol.
|
|
16
|
+
|
|
17
|
+
|
|
3
18
|
## 0.1.0
|
|
4
19
|
|
|
5
20
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alloy-js/python",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0-dev.0",
|
|
4
4
|
"description": "Python bindings for Alloy",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"author": "",
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@alloy-js/core": "~0.
|
|
17
|
+
"@alloy-js/core": "~0.21.0 || >= 0.22.0-dev.0",
|
|
18
18
|
"change-case": "^5.4.4",
|
|
19
19
|
"pathe": "^2.0.3"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@alloy-js/cli": "~0.
|
|
22
|
+
"@alloy-js/cli": "~0.21.0 || >= 0.22.0-dev.0",
|
|
23
23
|
"@alloy-js/rollup-plugin": "~0.1.0 || >= 0.1.1-dev.0",
|
|
24
24
|
"@microsoft/api-extractor": "~7.52.8",
|
|
25
25
|
"@rollup/plugin-typescript": "^12.1.2",
|