Skip to content

Commit 0ef06fd

Browse files
committed
Merge remote-tracking branch 'origin/0.5.x-merge-up-into-0.6.x_60268f50c99496.70253439' into 0.6.x
# Conflicts: # CHANGELOG.md
2 parents 56111df + 07c5405 commit 0ef06fd

File tree

4 files changed

+27
-8
lines changed

4 files changed

+27
-8
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,25 @@ All notable changes to this project will be documented in this file, in reverse
2424

2525
- Nothing.
2626

27+
## 0.5.1 - 2021-02-12
28+
29+
30+
-----
31+
32+
### Release Notes for [0.5.1](https://github.com/open-code-modeling/json-schema-to-php-ast/milestone/11)
33+
34+
0.5.x bugfix release (patch)
35+
36+
### 0.5.1
37+
38+
- Total issues resolved: **1**
39+
- Total pull requests resolved: **0**
40+
- Total contributors: **1**
41+
42+
#### enhancement
43+
44+
- [22: Pump php-code-ast to 0.12.0](https://github.com/open-code-modeling/json-schema-to-php-ast/issues/22) thanks to @sandrokeil
45+
2746
## 0.5.0 - 2021-02-11
2847

2948

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"require": {
3535
"php": "^7.4 || ^8.0",
3636
"open-code-modeling/json-schema-to-php": "^0.3.0 || 0.4.x-dev",
37-
"open-code-modeling/php-code-ast": "^0.11.0 || 0.12.x-dev"
37+
"open-code-modeling/php-code-ast": "^0.12.0 || 0.13.x-dev"
3838
},
3939
"require-dev": {
4040
"laminas/laminas-filter": "^2.9",

composer.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/PropertyFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public function nodeVisitorFromNative(string $name, string $type): array
103103

104104
public function propertyGenerator(string $name, string $type): PropertyGenerator
105105
{
106-
return new PropertyGenerator(($this->propertyNameFilter)($name), $type, null, $this->typed);
106+
return new PropertyGenerator(($this->propertyNameFilter)($name), $type, $this->typed);
107107
}
108108

109109
/**

0 commit comments

Comments
 (0)