Skip to content

Commit 61d941f

Browse files
authored
Merge pull request #37 from dylan-lang/v1.0.0
Prepare to v1.0.0
2 parents 46c9dc2 + 5de6734 commit 61d941f

File tree

5 files changed

+28
-5
lines changed

5 files changed

+28
-5
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Dylan Hackers
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

dylan-package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
{
22
"name": "sphinx-extensions",
33
"description": "Dylan extensions to the Sphinx documentation tools",
4-
"version": "0.2.0",
4+
"version": "1.0.0",
55
"dependencies": [],
66
"dev-dependencies": [],
7-
"url": "https://github.com/dylan-lang/sphinx-extensions"
7+
"url": "https://github.com/dylan-lang/sphinx-extensions",
8+
"contact": "dylan-lang@googlegroups.com",
9+
"keywords": ["documentation", "docs", "sphinx", "rst"]
810
}

sphinxcontrib/dylan/domain/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
A domain package for Sphinx.
66
77
Created by Dustin Voss on 2011-11-10.
8-
Copyright (c) 2011-2016 Open Dylan Maintainers. All rights reserved.
8+
Copyright (c) 2011-2025 Dylan Hackers. All rights reserved.
99
"""
1010

1111
from .dylandomain import DylanDomain

sphinxcontrib/dylan/domain/drmindex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# encoding: utf-8
22
"""
3-
Copyright (c) 2011-2019 Open Dylan Maintainers. All rights reserved.
3+
Copyright (c) 2011-2025 Dylan Hackers. All rights reserved.
44
"""
55

66
index = {

sphinxcontrib/dylan/domain/dylandomain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
dylandomain.py
44
55
Created by Dustin Voss on 2011-11-10.
6-
Copyright (c) 2011-2016 Open Dylan Maintainers. All rights reserved.
6+
Copyright (c) 2011-2025 Dylan Hackers. All rights reserved.
77
"""
88

99
import re

0 commit comments

Comments
 (0)