Changeset 56966
- Timestamp:
- 10/17/2023 06:39:45 PM (16 months ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/test-old-branches.yml
r56955 r56966 18 18 19 19 env: 20 CURRENTLY_SUPPORTED_BRANCH: '6. 3'20 CURRENTLY_SUPPORTED_BRANCH: '6.4' 21 21 22 22 jobs: … … 38 38 ] 39 39 branch: [ 40 '6. 3', '6.2', '6.1','6.0',40 '6.4', '6.3', '6.2', '6.1','6.0', 41 41 '5.9', '5.8', '5.7', '5.6', '5.5', '5.4', '5.3', '5.2', '5.1', '5.0', 42 42 '4.9', '4.8', '4.7', '4.6', '4.5', '4.4', '4.3', '4.2', '4.1' … … 44 44 include: 45 45 # PHP Compatibility testing was introduced in 5.5. 46 - branch: '6.4' 47 workflow: 'php-compatibility.yml' 46 48 - branch: '6.3' 47 49 workflow: 'php-compatibility.yml' … … 66 68 # Starting in 5.8 with #52905, some additional tests with real assertions were introduced. 67 69 # Branches 5.8 and newer should be tested to confirm no regressions are introduced. 70 - branch: '6.4' 71 workflow: 'end-to-end-tests.yml' 68 72 - branch: '6.3' 69 73 workflow: 'end-to-end-tests.yml' … … 80 84 81 85 # Performance testing was introduced in 6.2. 86 - branch: '6.4' 87 workflow: 'performance.yml' 82 88 - branch: '6.3' 83 89 workflow: 'performance.yml' -
trunk/SECURITY.md
r56267 r56966 10 10 11 11 | Version | Supported | 12 | ------- | --------- | 12 |---------| --------- | 13 | 6.4.x | Yes | 13 14 | 6.3.x | Yes | 14 15 | 6.2.x | Yes | -
trunk/package-lock.json
r56961 r56966 1 1 { 2 2 "name": "WordPress", 3 "version": "6. 4.0",3 "version": "6.5.0", 4 4 "lockfileVersion": 2, 5 5 "requires": true, -
trunk/package.json
r56961 r56966 1 1 { 2 2 "name": "WordPress", 3 "version": "6. 4.0",3 "version": "6.5.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
r56964 r56966 17 17 * @global string $wp_version 18 18 */ 19 $wp_version = '6. 4-RC1-56475-src';19 $wp_version = '6.5-alpha-56475-src'; 20 20 21 21 /**
Note: See TracChangeset
for help on using the changeset viewer.