Skip to content

Commit 08c6311

Browse files
authored
Version 1.0.15 (#1350)
* Format * ChangeLog * Version
1 parent 34fd8e9 commit 08c6311

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

changelog/1.0.0.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
---
44

55
### Version Updates
6+
- [Revision 1.0.15](https://github.com/sinclairzx81/typebox/pull/1346)
7+
- Specify Types for AssertError Cause Properties
68
- [Revision 1.0.14](https://github.com/sinclairzx81/typebox/pull/1349)
79
- Support Readonly Value Array on Enum Constructor.
810
- [Revision 1.0.13](https://github.com/sinclairzx81/typebox/pull/1348)

src/value/assert/assert.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import { Errors } from '../errors/index.ts'
3535
// AssertError
3636
// ------------------------------------------------------------------
3737
export class AssertError extends Error {
38-
declare readonly cause: { source: string, errors: object[], value: unknown };
38+
declare readonly cause: { source: string; errors: object[]; value: unknown }
3939
constructor(source: string, value: unknown, errors: object[]) {
4040
super(source)
4141
Object.defineProperty(this, 'cause', {

tasks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { Range } from './task/range/index.ts'
88
import { Metrics } from './task/metrics/index.ts'
99
import { Task } from 'tasksmith'
1010

11-
const Version = '1.0.14'
11+
const Version = '1.0.15'
1212

1313
// ------------------------------------------------------------------
1414
// BuildPackage

0 commit comments

Comments
 (0)