@alloy-js/go 0.1.0-dev.3 → 0.1.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 +11 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1 +1,12 @@
1
1
  # Changelog - @alloy-js/go
2
+
3
+ ## 0.1.0
4
+
5
+ ### Bug Fixes
6
+
7
+ - [#315](https://github.com/alloy-framework/alloy/pull/315) Moved type parameters to actual symbols in a member space of named type symbols. Added `receiverSymbol` to function symbols.
8
+
9
+ ### Features
10
+
11
+ - [#272](https://github.com/alloy-framework/alloy/pull/272) Initial implementation of golang support for alloy.
12
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alloy-js/go",
3
- "version": "0.1.0-dev.3",
3
+ "version": "0.1.0",
4
4
  "description": "Go bindings for Alloy",
5
5
  "exports": {
6
6
  ".": {
@@ -20,18 +20,18 @@
20
20
  "author": "",
21
21
  "license": "MIT",
22
22
  "dependencies": {
23
- "@alloy-js/core": "~0.20.0 || >= 0.21.0-dev.13",
24
23
  "change-case": "^5.4.4",
25
- "pathe": "^2.0.3"
24
+ "pathe": "^2.0.3",
25
+ "@alloy-js/core": "~0.21.0"
26
26
  },
27
27
  "devDependencies": {
28
- "@alloy-js/cli": "~0.20.0 || >= 0.21.0-dev.0",
29
- "@alloy-js/rollup-plugin": "~0.1.0 || >= 0.1.1-dev.0",
30
28
  "@microsoft/api-extractor": "~7.52.8",
31
29
  "@rollup/plugin-typescript": "^12.1.2",
32
30
  "concurrently": "^9.2.0",
33
31
  "typescript": "^5.8.3",
34
- "vitest": "^3.2.4"
32
+ "vitest": "^3.2.4",
33
+ "@alloy-js/cli": "~0.21.0",
34
+ "@alloy-js/rollup-plugin": "~0.1.0"
35
35
  },
36
36
  "type": "module",
37
37
  "scripts": {