Skip to content

Commit 613f3ab

Browse files
committed
Update docs, reference links, and credits
1 parent f780515 commit 613f3ab

27 files changed

+63
-62
lines changed

.src/draft/07/definition.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ export default defineValidationSpec({
1818
$license: desc`
1919
BSD-2-Clause License
2020
21-
Original source code is copyright (c) 2019-2022 Jeremy Rylan
22-
<https://github.com/jrylan>
21+
Original source code is copyright (c) 2019-2025 Remy Rylan
22+
<https://github.com/RemyRylan>
2323
2424
{COPYRIGHT}
2525

.src/draft/2019_09/definition.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ export default defineValidationSpec({
1818
$license: desc`
1919
BSD-2-Clause License
2020
21-
Original source code is copyright (c) 2022 Jeremy Rylan
22-
<https://github.com/jrylan>
21+
Original source code is copyright (c) 2025 Remy Rylan
22+
<https://github.com/RemyRylan>
2323
2424
{COPYRIGHT}
2525

.src/draft/2020_12/definition.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ export default defineValidationSpec({
1818
$license: desc`
1919
BSD-2-Clause License
2020
21-
Original source code is copyright (c) 2022 Jeremy Rylan
22-
<https://github.com/jrylan>
21+
Original source code is copyright (c) 2025 Remy Rylan
22+
<https://github.com/RemyRylan>
2323
2424
{COPYRIGHT}
2525

.src/file_templates/LICENSE.template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
BSD 2-Clause License
22

3-
Original source code is copyright (c) 2019-{YEAR} Jeremy Rylan
4-
<https://github.com/jrylan>
3+
Original source code is copyright (c) 2019-{YEAR} Remy Rylan
4+
<https://github.com/RemyRylan>
55

66
All JSON Schema documentation and descriptions are copyright (c):
77

.src/file_templates/README.deno.template.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ library for data validation.
2020
import {
2121
Format,
2222
type JSONSchema,
23-
} from "https://deno.land/x/json_schema_typed/draft_latest.ts";
23+
} from "https://deno.land/x/json_schema_typed@v8.0.2/draft_latest.ts";
2424

2525
const schema: JSONSchema = {
2626
properties: {
@@ -60,8 +60,8 @@ This library follows [semantic versioning](https://semver.org).
6060

6161
## Maintainers
6262

63-
- [Jeremy Rylan](https://github.com/jrylan)
63+
- [Remy Rylan](https://github.com/RemyRylan)
6464

6565
## License
6666

67-
[BSD-2-Clause](https://github.com/jrylan/json-schema-typed/blob/main/dist/deno/LICENSE.md)
67+
[BSD-2-Clause](https://github.com/RemyRylan/json-schema-typed/blob/main/dist/deno/LICENSE.md)

.src/file_templates/README.node.template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@ This library follows [semantic versioning](https://semver.org).
9797

9898
## Maintainers
9999

100-
- [Jeremy Rylan](https://github.com/jrylan)
100+
- [Remy Rylan](https://github.com/RemyRylan)
101101

102102
## License
103103

104104
[BSD-2-Clause][license]
105105

106-
[license]: https://github.com/jrylan/json-schema-typed/blob/main/dist/node/LICENSE.md
106+
[license]: https://github.com/RemyRylan/json-schema-typed/blob/main/dist/node/LICENSE.md

.src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = "8.0.1";
1+
export const VERSION = "8.0.2";

LICENSE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
BSD 2-Clause License
22

3-
Original source code is copyright (c) 2019-2025 Jeremy Rylan
4-
<https://github.com/jrylan>
3+
Original source code is copyright (c) 2019-2025 Remy Rylan
4+
<https://github.com/RemyRylan>
55

66
All JSON Schema documentation and descriptions are copyright (c):
77

@@ -54,4 +54,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
5454
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
5555
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
5656
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
57-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
57+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ JSON Schema TypeScript definitions with complete inline documentation.
66

77
## Distributions
88

9-
- [Deno](https://github.com/jrylan/json-schema-typed/tree/main/dist/deno)
10-
- [Node.js](https://github.com/jrylan/json-schema-typed/tree/main/dist/node)
11-
- [Spec Definitions](https://github.com/jrylan/json-schema-typed/tree/main/dist/spec_definitions) -
9+
- [Deno](https://github.com/RemyRylan/json-schema-typed/tree/main/dist/deno)
10+
- [Node.js](https://github.com/RemyRylan/json-schema-typed/tree/main/dist/node)
11+
- [Spec Definitions](https://github.com/RemyRylan/json-schema-typed/tree/main/dist/spec_definitions) -
1212
Consistent JSON definitions to help library authors implement JSON Schema
1313
validators with bundled documentation.
1414

1515
---
1616

1717
## Maintainers
1818

19-
- [Jeremy Rylan](https://github.com/jrylan)
19+
- [Remy Rylan](https://github.com/RemyRylan)
2020

2121
## License
2222

23-
[BSD-2-Clause](https://github.com/jrylan/json-schema-typed/blob/main/LICENSE.md)
23+
[BSD-2-Clause](https://github.com/RemyRylan/json-schema-typed/blob/main/LICENSE.md)

cspell.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88
"galiegue",
99
"geraint",
1010
"handrews",
11-
"jrylan",
1211
"luffgd",
1312
"microformat",
1413
"millisec",
14+
"remy",
15+
"remyrylan",
1516
"rylan",
1617
"subschema",
1718
"subschemas",

0 commit comments

Comments
 (0)