Skip to content

Commit ec0b9e8

Browse files
authored
Render schema in markdown (#39)
1 parent 8ccd339 commit ec0b9e8

File tree

7 files changed

+720
-41
lines changed

7 files changed

+720
-41
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.2.32] - 2021-04-25
8+
9+
### Added
10+
- Support for Markdown rendering of JSON Schema.
11+
- Support for binary strings (files) in JSDoc.
12+
713
## [0.2.31] - 2021-04-12
814

915
### Added
@@ -82,6 +88,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8288
### Fixed
8389
- Description trimming bug.
8490

91+
[0.2.32]: https://github.com/swaggest/php-code-builder/compare/v0.2.31...v0.2.32
8592
[0.2.31]: https://github.com/swaggest/php-code-builder/compare/v0.2.30...v0.2.31
8693
[0.2.30]: https://github.com/swaggest/php-code-builder/compare/v0.2.29...v0.2.30
8794
[0.2.29]: https://github.com/swaggest/php-code-builder/compare/v0.2.28...v0.2.29

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ lint:
88
@php $$HOME/.cache/composer/phpstan-${PHPSTAN_VERSION}.phar analyze -l 7 -c phpstan.neon ./src
99

1010
docker-lint:
11-
@docker run -v $$PWD:/app --rm phpstan/phpstan analyze -l 7 -c phpstan.neon ./src
11+
@docker run -v $$PWD:/app --rm phpstan/phpstan:${PHPSTAN_VERSION} analyze -l 7 -c phpstan.neon ./src
1212

1313
test:
1414
@php -derror_reporting="E_ALL & ~E_DEPRECATED" vendor/bin/phpunit

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"require": {
1616
"ext-json": "*",
1717
"swaggest/json-schema": "^0.12.31",
18-
"swaggest/code-builder": "^0.3.3",
18+
"swaggest/code-builder": "^0.3.4",
1919
"php": ">=5.6.0"
2020
},
2121
"require-dev": {

0 commit comments

Comments
 (0)