Changeset 54642
- Timestamp:
- 10/18/2022 08:03:57 PM (3 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/test-old-branches.yml
r54511 r54642 29 29 ] 30 30 branch: [ 31 '6. 0',31 '6.1','6.0', 32 32 '5.9', '5.8', '5.7', '5.6', '5.5', '5.4', '5.3', '5.2', '5.1', '5.0', 33 33 '4.9', '4.8', '4.7', '4.6', '4.5', '4.4', '4.3', '4.2', '4.1', '4.0', … … 36 36 include: 37 37 # PHP Compatibility testing was introduced in 5.5. 38 - branch: '6.1' 39 workflow: 'php-compatibility.yml' 38 40 - branch: '6.0' 39 41 workflow: 'php-compatibility.yml' … … 52 54 # Starting in 5.8 with #52905, some additional tests with real assertions were introduced. 53 55 # Branches 5.8 and newer should be tested to confirm no regressions are introduced. 56 - branch: '6.1' 57 workflow: 'end-to-end-tests.yml' 54 58 - branch: '6.0' 55 59 workflow: 'end-to-end-tests.yml' … … 69 73 - name: Dispatch workflow run 70 74 uses: actions/github-script@100527700e8b29ca817ac0e0dfbfc5e8ff38edda # v6.3.2 71 if: ${{ github.event_name == 'push' || github.event.schedule == '0 0 15 * *' || matrix.branch == '6. 0' }}75 if: ${{ github.event_name == 'push' || github.event.schedule == '0 0 15 * *' || matrix.branch == '6.1' }} 72 76 with: 73 77 retries: 2 -
trunk/SECURITY.md
r53342 r54642 10 10 | Version | Supported | 11 11 | ------- | ------------------ | 12 | 6.1.x | :white_check_mark: | 12 13 | 6.0.x | :white_check_mark: | 13 14 | 5.9.x | :white_check_mark: | -
trunk/package-lock.json
r54632 r54642 1 1 { 2 2 "name": "WordPress", 3 "version": "6. 1.0",3 "version": "6.2.0", 4 4 "lockfileVersion": 1, 5 5 "requires": true, -
trunk/package.json
r54632 r54642 1 1 { 2 2 "name": "WordPress", 3 "version": "6. 1.0",3 "version": "6.2.0", 4 4 "description": "WordPress is open source software you can use to create a beautiful website, blog, or app.", 5 5 "repository": { -
trunk/src/wp-includes/version.php
r54640 r54642 17 17 * @global string $wp_version 18 18 */ 19 $wp_version = '6. 1-RC2-54640-src';19 $wp_version = '6.2-alpha-54642-src'; 20 20 21 21 /**
Note: See TracChangeset
for help on using the changeset viewer.