Skip to content

Commit 1dd0f1e

Browse files
authored
Update dependencies (#27)
1 parent 0ee680f commit 1dd0f1e

File tree

7 files changed

+214
-184
lines changed

7 files changed

+214
-184
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ 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+
## [1.8.5] - 2021-04-20
8+
9+
### Added
10+
- Dependencies updated.
11+
712
## [1.8.4] - 2021-04-07
813

914
### Added
@@ -165,6 +170,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
165170
### Fixed
166171
- Local file resolver in references.
167172

173+
[1.8.4]: https://github.com/swaggest/json-cli/compare/v1.8.4...v1.8.5
174+
[1.8.4]: https://github.com/swaggest/json-cli/compare/v1.8.3...v1.8.4
168175
[1.8.3]: https://github.com/swaggest/json-cli/compare/v1.8.2...v1.8.3
169176
[1.8.2]: https://github.com/swaggest/json-cli/compare/v1.8.1...v1.8.2
170177
[1.8.1]: https://github.com/swaggest/json-cli/compare/v1.8.0...v1.8.1

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"symfony/yaml": "^3",
1717
"salsify/json-streaming-parser": "^7.0",
1818
"swaggest/json-schema": "^0.12.21",
19-
"swaggest/go-code-builder": "^0.4.42",
19+
"swaggest/go-code-builder": "^0.4.43",
2020
"swaggest/php-code-builder": "^0.2.29",
2121
"swaggest/code-builder": "^0.3.2",
2222
"swaggest/json-schema-maker": "^0.3.4"

composer.lock

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

src/App.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class App extends Command\Application
99
{
10-
public static $ver = 'v1.8.4';
10+
public static $ver = 'v1.8.5';
1111

1212
public $diff;
1313
public $apply;
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
/**
22
* @typedef ComponentsMessagesLightMeasuredPayload
3-
* @type {object}
4-
* @property {number} lumens - Light intensity measured in lumens (updated).
5-
* @property {string} sentAt - Date and time when the message was sent (updated).
3+
* @type {Object}
4+
* @property {Number} lumens - Light intensity measured in lumens (updated).
5+
* @property {String} sentAt - Date and time when the message was sent (updated).
66
*/
77

88
/**
99
* @typedef ComponentsMessagesTurnOnOffPayload
10-
* @type {object}
11-
* @property {string} command - Whether to turn on or off the light.
12-
* @property {string} sentAt - Date and time when the message was sent (updated).
10+
* @type {Object}
11+
* @property {('on'|'off')} command - Whether to turn on or off the light.
12+
* @property {String} sentAt - Date and time when the message was sent (updated).
1313
*/
1414

1515
/**
1616
* @typedef ComponentsMessagesDimLightPayload
17-
* @type {object}
18-
* @property {number} percentage - Percentage to which the light should be dimmed to.
19-
* @property {string} sentAt - Date and time when the message was sent (updated).
17+
* @type {Object}
18+
* @property {Number} percentage - Percentage to which the light should be dimmed to.
19+
* @property {String} sentAt - Date and time when the message was sent (updated).
2020
*/
2121

0 commit comments

Comments
 (0)