@alloy-js/csharp 0.19.0-dev.9 → 0.20.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 +17 -0
- package/package.json +3 -3
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.
|
|
3
|
+
"version": "0.20.0-dev.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
"author": "jhendrix@microsoft.com",
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@alloy-js/core": "~0.
|
|
17
|
+
"@alloy-js/core": "~0.19.0 || >= 0.20.0-dev.0",
|
|
18
18
|
"change-case": "^5.4.4",
|
|
19
19
|
"marked": "^15.0.12",
|
|
20
20
|
"pathe": "^2.0.3"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@alloy-js/cli": "~0.
|
|
23
|
+
"@alloy-js/cli": "~0.19.0 || >= 0.20.0-dev.0",
|
|
24
24
|
"@alloy-js/rollup-plugin": "~0.1.0 || >= 0.1.1-dev.0",
|
|
25
25
|
"@microsoft/api-extractor": "~7.52.8",
|
|
26
26
|
"@rollup/plugin-typescript": "^12.1.2",
|