8000 Test: Add jQuery 3.6.0 · jquery/jquery-color@10759dd · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit 10759dd

Browse files
committed
Test: Add jQuery 3.6.0
1 parent e17263d commit 10759dd

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

Gruntfile.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ grunt.initConfig( {
4545
"jquery-color": [
4646
"3.x-git",
4747
"3.x-git.min",
48+
"3.6.0",
4849
"3.5.1",
4950
"3.4.1",
5051
"3.3.1",
@@ -116,7 +117,10 @@ grunt.initConfig( {
116117
"jquery-3.4.1/LICENSE.txt": "jquery-3.4.1/LICENSE.txt",
117118

118119
"jquery-3.5.1/jquery.js": "jquery-3.5.1/dist/jquery.js",
119-
"jquery-3.5.1/LICENSE.txt": "jquery-3.5.1/LICENSE.txt"
120+
"jquery-3.5.1/LICENSE.txt": "jquery-3.5.1/LICENSE.txt",
121+
122+
"jquery-3.6.0/jquery.js": "jquery-3.6.0/dist/jquery.js",
123+
"jquery-3.6.0/LICENSE.txt": "jquery-3.6.0/LICENSE.txt"
120124
}
121125
}
122126
},

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ div {
8181
border: 1px solid green;
8282
}
8383
</style>
84-
<script src="http://code.jquery.com/jquery-3.5.1.min.js"></script>
84+
<script src="http://code.jquery.com/jquery-3.6.0.min.js"></script>
8585
<script src="jquery.color.min.js"></script>
8686
</head>
8787
<body>

bower.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"jquery-3.2.1": "jquery#3.2.1",
3232
"jquery-3.3.1": "jquery#3.3.1",
3333
"jquery-3.4.1": "jquery#3.4.1",
34-
"jquery-3.5.1": "jquery#3.5.1"
34+
"jquery-3.5.1": "jquery#3.5.1",
35+
"jquery-3.6.0": "jquery#3.6.0"
3536
}
3637
}

test/data/testinit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ QUnit.config.urlConfig.push( {
66
B2A2 value: [
77
"1.7.2", "1.8.3", "1.9.1", "1.10.2", "1.11.3", "1.12.4",
88
"2.0.3", "2.1.4", "2.2.4",
9-
"3.0.0", "3.1.1", "3.2.1", "3.3.1", "3.4.1", "3.5.1",
9+
"3.0.0", "3.1.1", "3.2.1", "3.3.1", "3.4.1", "3.5.1", "3.6.0",
1010
"3.x-git", "git"
1111
],
1212
tooltip: "Which jQuery Core version to test against"

test/jquery.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ for ( ; i < length; i++ ) {
1818
if ( /(?:3.x-)?git(\.min)?/.test( version ) ) {
1919
url = "https://code.jquery.com/jquery-" + version + ".js";
2020
} else {
21-
url = "../external/jquery-" + ( version || "3.5.1" ) + "/jquery.js";
21+
url = "../external/jquery-" + ( version || "3.6.0" ) + "/jquery.js";
2222
}
2323

2424
document.write( "<script src='" + url + "'></script>" );

0 commit comments

Comments
 (0)
0