Skip to content

Commit 8bedeab

Browse files
committed
Bump to 0.11.4 and release.
1 parent 13ee0ae commit 8bedeab

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
1-
# 0.11.3
1+
# 0.11.4 - 2023/01/06
22

33
* The proxy resolution is fixed and clarified. When compiling
44
a system, all proxies are actually replaced by their actual
55
Type instance. Only recursive types still keep ProxyType
66
instances (as sentinels) ; they are bound to their target
77
type and delete dress and include? to them.
88

9+
Given that ProxyType is a sentinel on recursive types, calls
10+
to generate_data and to_json_schema are not delegated to the
11+
target type, to avoid infinite recursions.
12+
13+
* Generated names of instantiated high order types are better
14+
(e.g. Collection<String>).
15+
916
# 0.11.3 - 2023/01/06
1017

1118
* Fix json_schema generation on unresolved ProxyTypes. We use

lib/finitio/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module Version
33

44
MAJOR = 0
55
MINOR = 11
6-
TINY = 3
6+
TINY = 4
77

88
def self.to_s
99
[ MAJOR, MINOR, TINY ].join('.')

0 commit comments

Comments
 (0)