diff --git a/Makefile b/Makefile index ad63ab8..8fc5a4f 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# SPDX-License-Identifier: LGPL-2.1-or-later +# SPDX-License-Identifier: LGPL-2.1-only # Copyright 2021 Jookia SHELL=/bin/bash diff --git a/README.md b/README.md index bf26013..9b1e794 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ ## License -NewLang is licensed under the [GNU LGPL version 2.1 or later](LICENSE.LGPL-2.1.md). +NewLang is licensed under the [GNU LGPL version 2.1](LICENSE.LGPL-2.1.md). - Copyright: 2021 Jookia -- SPDX-License-Identifier: LGPL-2.1-or-later +- SPDX-License-Identifier: LGPL-2.1-only diff --git a/docs/examples/greeting.txt b/docs/examples/greeting.txt index e2f840d..a522ce9 100644 --- a/docs/examples/greeting.txt +++ b/docs/examples/greeting.txt @@ -2,7 +2,7 @@ StartNote Copyright 2021 Jookia -SPDX-License-Identifier: LGPL-2.1-or-later +SPDX-License-Identifier: LGPL-2.1-only This is a comment and should be ignored by the parser EndNote diff --git a/docs/examples/menu.txt b/docs/examples/menu.txt index f32b850..63cb333 100644 --- a/docs/examples/menu.txt +++ b/docs/examples/menu.txt @@ -2,7 +2,7 @@ StartNote Copyright 2021 Jookia -SPDX-License-Identifier: LGPL-2.1-or-later +SPDX-License-Identifier: LGPL-2.1-only EndNote System Print StartText Type 'Hi' for a greeting EndText Done diff --git a/docs/syntax.md b/docs/syntax.md index 4cf3b27..c671ab9 100644 --- a/docs/syntax.md +++ b/docs/syntax.md @@ -7,7 +7,7 @@ but instead describes the planned syntax. - Copyright: 2021 Jookia -- SPDX-License-Identifier: LGPL-2.1-or-later +- SPDX-License-Identifier: LGPL-2.1-only ## Design Principles diff --git a/src/ast_types.py b/src/ast_types.py index bc2df48..763ab17 100644 --- a/src/ast_types.py +++ b/src/ast_types.py @@ -1,4 +1,4 @@ -# SPDX-License-Identifier: LGPL-2.1-or-later +# SPDX-License-Identifier: LGPL-2.1-only # Copyright 2021 Jookia diff --git a/src/interp.py b/src/interp.py index b59a5f8..a88cb02 100644 --- a/src/interp.py +++ b/src/interp.py @@ -1,4 +1,4 @@ -# SPDX-License-Identifier: LGPL-2.1-or-later +# SPDX-License-Identifier: LGPL-2.1-only # Copyright 2021 Jookia from src import ast_types diff --git a/src/log.py b/src/log.py index 6416c51..e513c2e 100644 --- a/src/log.py +++ b/src/log.py @@ -1,4 +1,4 @@ -# SPDX-License-Identifier: LGPL-2.1-or-later +# SPDX-License-Identifier: LGPL-2.1-only # Copyright 2021 Jookia import os diff --git a/src/main.py b/src/main.py index ae071a0..d60cf6b 100755 --- a/src/main.py +++ b/src/main.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# SPDX-License-Identifier: LGPL-2.1-or-later +# SPDX-License-Identifier: LGPL-2.1-only # Copyright 2021 Jookia import os diff --git a/src/parse.py b/src/parse.py index a66ce52..88c010f 100644 --- a/src/parse.py +++ b/src/parse.py @@ -1,4 +1,4 @@ -# SPDX-License-Identifier: LGPL-2.1-or-later +# SPDX-License-Identifier: LGPL-2.1-only # Copyright 2021 Jookia from src import log