@alloy-js/csharp 0.19.0-dev.9 → 0.19.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 +17 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog - @alloy-js/csharp
2
2
 
3
+ ## 0.19.0
4
+
5
+ ### Features
6
+
7
+ - [#246](https://github.com/alloy-framework/alloy/pull/246) Add support for `struct` declaration
8
+ - [#250](https://github.com/alloy-framework/alloy/pull/250) Fields support `new`, `readonly`, `static` and `volatile` modifier
9
+ - [#250](https://github.com/alloy-framework/alloy/pull/250) Private field respect c# naming convention of `_camelCase`
10
+ - [#251](https://github.com/alloy-framework/alloy/pull/251) Support `readonly`, `override` and `extern` modifier for `Method`
11
+ - [#247](https://github.com/alloy-framework/alloy/pull/247) Add support for expression body syntax in methods
12
+
13
+ ### Breaking Changes
14
+
15
+ - [#249](https://github.com/alloy-framework/alloy/pull/249) Rename `ClassMember` to `Field` to allow using it with `StructDeclaration`
16
+ - [#248](https://github.com/alloy-framework/alloy/pull/248) Rename `ClassConstructor` to `Constructor` to allow using it with `StructDeclaration`
17
+ - [#248](https://github.com/alloy-framework/alloy/pull/248) Rename `ClassMethod` to `Method` to allow using it with `StructDeclaration`
18
+
19
+
3
20
  ## 0.18.0
4
21
 
5
22
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alloy-js/csharp",
3
- "version": "0.19.0-dev.9",
3
+ "version": "0.19.0",
4
4
  "description": "",
5
5
  "exports": {
6
6
  ".": {
@@ -14,19 +14,19 @@
14
14
  "author": "jhendrix@microsoft.com",
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
- "@alloy-js/core": "~0.18.2 || >= 0.19.0-dev.12",
18
17
  "change-case": "^5.4.4",
19
18
  "marked": "^15.0.12",
20
- "pathe": "^2.0.3"
19
+ "pathe": "^2.0.3",
20
+ "@alloy-js/core": "~0.19.0"
21
21
  },
22
22
  "devDependencies": {
23
- "@alloy-js/cli": "~0.18.0 || >= 0.19.0-dev.0",
24
- "@alloy-js/rollup-plugin": "~0.1.0 || >= 0.1.1-dev.0",
25
23
  "@microsoft/api-extractor": "~7.52.8",
26
24
  "@rollup/plugin-typescript": "^12.1.2",
27
25
  "concurrently": "^9.1.2",
28
26
  "typescript": "^5.8.3",
29
- "vitest": "^3.2.4"
27
+ "vitest": "^3.2.4",
28
+ "@alloy-js/rollup-plugin": "~0.1.0",
29
+ "@alloy-js/cli": "~0.19.0"
30
30
  },
31
31
  "type": "module",
32
32
  "scripts": {