diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 6f953d9..00f22d1 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -49,8 +49,8 @@ jobs: - name: Test run: | npm run test:unit -- -h -b ${{ matrix.BROWSER }} \ - --jquery 1.8.3 --jquery 1.9.1 --jquery 1.10.2 --jquery 1.11.3 --jquery 1.12.4 \ - --jquery 2.0.3 --jquery 2.1.4 --jquery 2.2.4 \ + --jquery 1.12.4 \ + --jquery 2.2.4 \ --jquery 3.0.0 --jquery 3.1.1 --jquery 3.2.1 --jquery 3.3.1 \ --jquery 3.4.1 --jquery 3.5.1 --jquery 3.6.4 --jquery 3.7.1 \ --jquery 3.x-git --jquery git \ @@ -85,8 +85,8 @@ jobs: - name: Test run: | npm run test:unit -- -h -b edge ` - --jquery 1.8.3 --jquery 1.9.1 --jquery 1.10.2 --jquery 1.11.3 --jquery 1.12.4 ` - --jquery 2.0.3 --jquery 2.1.4 --jquery 2.2.4 ` + --jquery 1.12.4 ` + --jquery 2.2.4 ` --jquery 3.0.0 --jquery 3.1.1 --jquery 3.2.1 --jquery 3.3.1 ` --jquery 3.4.1 --jquery 3.5.1 --jquery 3.6.4 --jquery 3.7.1 ` --jquery 3.x-git --jquery git ` @@ -121,8 +121,8 @@ jobs: - name: Test run: | npm run test:unit -- -b safari \ - --jquery 1.8.3 --jquery 1.9.1 --jquery 1.10.2 --jquery 1.11.3 --jquery 1.12.4 \ - --jquery 2.0.3 --jquery 2.1.4 --jquery 2.2.4 \ + --jquery 1.12.4 \ + --jquery 2.2.4 \ --jquery 3.0.0 --jquery 3.1.1 --jquery 3.2.1 --jquery 3.3.1 \ --jquery 3.4.1 --jquery 3.5.1 --jquery 3.6.4 --jquery 3.7.1 \ --jquery 3.x-git --jquery git \ diff --git a/README.md b/README.md index b20e5ac..87c9656 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # jQuery Color -Supported jQuery versions: 1.12+ (only the latest version within each jQuery major is tested) +Supported jQuery versions: 1.12+ / 2.2+ ## Browser Support diff --git a/package-lock.json b/package-lock.json index 660f8fd..13180c7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6,7 +6,7 @@ "packages": { "": { "name": "jquery-color", - "version": "3.0.0-pre", + "version": "3.0.1-pre", "license": "MIT", "devDependencies": { "@types/selenium-webdriver": "4.1.22", diff --git a/test/data/testinit.js b/test/data/testinit.js index d159b7a..4a8230c 100644 --- a/test/data/testinit.js +++ b/test/data/testinit.js @@ -6,8 +6,8 @@ QUnit.config.urlConfig.push( { // Keep in sync with test/runner/flags/jquery.js value: [ - "1.8.3", "1.9.1", "1.10.2", "1.11.3", "1.12.4", - "2.0.3", "2.1.4", "2.2.4", + "1.12.4", + "2.2.4", "3.0.0", "3.1.1", "3.2.1", "3.3.1", "3.4.1", "3.5.1", "3.6.4", "3.7.1", "3.x-git", "git" ], diff --git a/test/runner/flags/jquery.js b/test/runner/flags/jquery.js index 0e3cd02..51c79cb 100644 --- a/test/runner/flags/jquery.js +++ b/test/runner/flags/jquery.js @@ -1,7 +1,7 @@ // Keep in sync with test/data/testinit.js export const jquery = [ - "1.8.3", "1.9.1", "1.10.2", "1.11.3", "1.12.4", - "2.0.3", "2.1.4", "2.2.4", + "1.12.4", + "2.2.4", "3.0.0", "3.1.1", "3.2.1", "3.3.1", "3.4.1", "3.5.1", "3.6.4", "3.7.1", "3.x-git", "git" ];