@opndev/racecontrol 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Changes +7 -1
- package/README.md +2 -2
- package/lib/index.mjs +2 -4
- package/package.json +2 -2
package/Changes
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
Revision history for @opndev/racecontrol
|
|
2
2
|
|
|
3
|
+
0.0.2 2026-05-09 21:20:25Z
|
|
4
|
+
|
|
5
|
+
* Change license to AGPL - GPL was wrong. People are still able to use v0.0.1
|
|
6
|
+
as GPL with the exceptions but any change going forward is covered by AGPL
|
|
7
|
+
v3 or later.
|
|
8
|
+
|
|
3
9
|
0.0.1 2026-05-09 20:48:20Z
|
|
4
10
|
|
|
5
|
-
|
|
11
|
+
* First release to an unsuspecting world
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<!--
|
|
2
2
|
SPDX-FileCopyrightText: 2026 Wesley Schwengle <wesleys@opperschaap.net>
|
|
3
3
|
|
|
4
|
-
SPDX-License-Identifier:
|
|
4
|
+
SPDX-License-Identifier: AGPL-3.0-or-later WITH LicenseRef-OPNDEV-exceptions
|
|
5
5
|
-->
|
|
6
6
|
|
|
7
7
|
# Welcome to @opndev/racecontrol
|
|
@@ -13,7 +13,7 @@ may use it at your own discretion.
|
|
|
13
13
|
|
|
14
14
|
### License
|
|
15
15
|
|
|
16
|
-
Please be aware that this package is
|
|
16
|
+
Please be aware that this package is AGPL-3.0-or-later with exceptions. Please
|
|
17
17
|
refer to the LICENSES directory for more on this.
|
|
18
18
|
|
|
19
19
|
### Code contributions
|
package/lib/index.mjs
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
// SPDX-FileCopyrightText: 2026 Wesley Schwengle <wesleys@opperschaap.net>
|
|
2
2
|
//
|
|
3
|
-
// SPDX-License-Identifier:
|
|
3
|
+
// SPDX-License-Identifier: AGPL-3.0-or-later WITH LicenseRef-OPNDEV-exceptions
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
const VERSION = "0.0.
|
|
7
|
-
|
|
8
|
-
/**
|
|
6
|
+
const VERSION = "0.0.2";/**
|
|
9
7
|
* Check whether a participant matches a subdivision.
|
|
10
8
|
*
|
|
11
9
|
* Gender `x` acts as open. Age `0` means unbounded.
|
package/package.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"keywords": [
|
|
15
15
|
"racecontrol"
|
|
16
16
|
],
|
|
17
|
-
"license": "
|
|
17
|
+
"license": "AAGPL-3.0-or-later WITH LicenseRef-OPNDEV-exceptions",
|
|
18
18
|
"name": "@opndev/racecontrol",
|
|
19
19
|
"private": false,
|
|
20
20
|
"scripts": {
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
},
|
|
27
27
|
"sideEffects": false,
|
|
28
28
|
"type": "module",
|
|
29
|
-
"version": "0.0.
|
|
29
|
+
"version": "0.0.2"
|
|
30
30
|
}
|