@typeberry/lib 0.4.1-3923458 → 0.4.1-6aea8d7
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/index.cjs +1 -5
- package/index.d.ts +1 -5
- package/index.js +1 -5
- package/package.json +1 -1
package/index.cjs
CHANGED
|
@@ -21,11 +21,7 @@ var TestSuite;
|
|
|
21
21
|
})(TestSuite || (TestSuite = {}));
|
|
22
22
|
const ALL_VERSIONS_IN_ORDER = [GpVersion.V0_6_7, GpVersion.V0_7_0, GpVersion.V0_7_1, GpVersion.V0_7_2];
|
|
23
23
|
const DEFAULT_SUITE = TestSuite.W3F_DAVXY;
|
|
24
|
-
|
|
25
|
-
* Current version is set to track the jam-conformance testing.
|
|
26
|
-
* Since we are currently at 0.7.1 not 0.7.2, we set our default version accordingly.
|
|
27
|
-
*/
|
|
28
|
-
const DEFAULT_VERSION = GpVersion.V0_7_1;
|
|
24
|
+
const DEFAULT_VERSION = GpVersion.V0_7_2;
|
|
29
25
|
let CURRENT_VERSION = parseCurrentVersion(env.GP_VERSION) ?? DEFAULT_VERSION;
|
|
30
26
|
let CURRENT_SUITE = parseCurrentSuite(env.TEST_SUITE) ?? DEFAULT_SUITE;
|
|
31
27
|
function parseCurrentVersion(env) {
|
package/index.d.ts
CHANGED
|
@@ -152,11 +152,7 @@ declare enum TestSuite {
|
|
|
152
152
|
JAMDUNA = "jamduna"
|
|
153
153
|
}
|
|
154
154
|
declare const DEFAULT_SUITE = TestSuite.W3F_DAVXY;
|
|
155
|
-
|
|
156
|
-
* Current version is set to track the jam-conformance testing.
|
|
157
|
-
* Since we are currently at 0.7.1 not 0.7.2, we set our default version accordingly.
|
|
158
|
-
*/
|
|
159
|
-
declare const DEFAULT_VERSION = GpVersion.V0_7_1;
|
|
155
|
+
declare const DEFAULT_VERSION = GpVersion.V0_7_2;
|
|
160
156
|
declare let CURRENT_VERSION: GpVersion;
|
|
161
157
|
declare let CURRENT_SUITE: TestSuite;
|
|
162
158
|
declare class Compatibility {
|
package/index.js
CHANGED
|
@@ -18,11 +18,7 @@ var TestSuite;
|
|
|
18
18
|
})(TestSuite || (TestSuite = {}));
|
|
19
19
|
const ALL_VERSIONS_IN_ORDER = [GpVersion.V0_6_7, GpVersion.V0_7_0, GpVersion.V0_7_1, GpVersion.V0_7_2];
|
|
20
20
|
const DEFAULT_SUITE = TestSuite.W3F_DAVXY;
|
|
21
|
-
|
|
22
|
-
* Current version is set to track the jam-conformance testing.
|
|
23
|
-
* Since we are currently at 0.7.1 not 0.7.2, we set our default version accordingly.
|
|
24
|
-
*/
|
|
25
|
-
const DEFAULT_VERSION = GpVersion.V0_7_1;
|
|
21
|
+
const DEFAULT_VERSION = GpVersion.V0_7_2;
|
|
26
22
|
let CURRENT_VERSION = parseCurrentVersion(env.GP_VERSION) ?? DEFAULT_VERSION;
|
|
27
23
|
let CURRENT_SUITE = parseCurrentSuite(env.TEST_SUITE) ?? DEFAULT_SUITE;
|
|
28
24
|
function parseCurrentVersion(env) {
|