Commit 8c201a2 1 parent e28372f commit 8c201a2 Copy full SHA for 8c201a2
File tree 3 files changed +16
-2
lines changed
3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## Unreleased
9
9
10
+ ## 0.5.0 - 2024-05-08
11
+
10
12
### Fixed
11
13
12
14
* Transform ` Promise ` to ` JS.Promise ` (by @nojaf ) ([ GH-33 ] ( https://github.com/glutinum-org/cli/pull/33 ) )
@@ -53,6 +55,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
53
55
U2<MyClass, string>
54
56
` ` `
55
57
58
+ * Don ' t generate `U1` if an union is resolved to a single type
59
+
60
+ ` ` ` ts
61
+ export type ColorInfo = number | false;
62
+ ` ` `
63
+
64
+ ` ` ` fs
65
+ // We can't represent false in F#
66
+ type ColorInfo = float
67
+ ` ` `
68
+
56
69
### Added
57
70
58
71
* Add support for ` MethodSignature ` on interface ([GH -28](https :// github.com/glutinum-org/cli/issues/28))
@@ -286,6 +299,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
286
299
` ` ` fs
287
300
type MyObject = obj
288
301
` ` `
302
+ * Add support for converting tsdoc to xml doc comments
289
303
290
304
### Changed
291
305
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @glutinum/cli" ,
3
- "version" : " 0.4 .0" ,
3
+ "version" : " 0.5 .0" ,
4
4
"description" : " TypeScript definition to F# bindings converter" ,
5
5
"type" : " module" ,
6
6
"main" : " index.js" ,
Original file line number Diff line number Diff line change 1
1
module Glutinum.Converter.Prelude
2
2
3
3
[<Literal>]
4
- let VERSION = " 0.4 .0"
4
+ let VERSION = " 0.5 .0"
You can’t perform that action at this time.
0 commit comments