@alloy-js/python 0.2.0-dev.6 → 0.2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/package.json +6 -6
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.2.0-dev.6",
3
+ "version": "0.2.0",
4
4
  "description": "Python bindings for Alloy",
5
5
  "exports": {
6
6
  ".": {
@@ -14,18 +14,18 @@
14
14
  "author": "",
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
- "@alloy-js/core": "~0.20.0 || >= 0.21.0-dev.13",
18
17
  "change-case": "^5.4.4",
19
- "pathe": "^2.0.3"
18
+ "pathe": "^2.0.3",
19
+ "@alloy-js/core": "~0.21.0"
20
20
  },
21
21
  "devDependencies": {
22
- "@alloy-js/cli": "~0.20.0 || >= 0.21.0-dev.0",
23
- "@alloy-js/rollup-plugin": "~0.1.0 || >= 0.1.1-dev.0",
24
22
  "@microsoft/api-extractor": "~7.52.8",
25
23
  "@rollup/plugin-typescript": "^12.1.2",
26
24
  "concurrently": "^9.2.0",
27
25
  "typescript": "^5.8.3",
28
- "vitest": "^3.2.4"
26
+ "vitest": "^3.2.4",
27
+ "@alloy-js/rollup-plugin": "~0.1.0",
28
+ "@alloy-js/cli": "~0.21.0"
29
29
  },
30
30
  "type": "module",
31
31
  "scripts": {