Skip to content

Commit

Permalink
Correct versions
Browse files Browse the repository at this point in the history
  • Loading branch information
thingalon authored and matticbot committed Aug 1, 2023
1 parent f38e1a4 commit f07466b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.10.0-beta] - 2023-08-01
## [2.0.0-beta] - 2023-08-01
### Added
- Caching: Added support for the 'Accept' HTTP Header. Prevent caching JSON content. [#29456]
- Preload: Improved preload notification panel shows the last 5 preloaded URLs. [#31017]
Expand Down Expand Up @@ -673,10 +673,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Misc fixes

[1.10.0-beta]: https://github.com/Automattic/wp-super-cache/compare/v1.9.4-beta...v1.10.0-beta
[1.9.4-beta]: https://github.com/Automattic/wp-super-cache/compare/v1.9.3-beta...v1.9.4-beta
[1.9.3-beta]: https://github.com/Automattic/wp-super-cache/compare/v1.9.2-beta...v1.9.3-beta
[1.9.2-beta]: https://github.com/Automattic/wp-super-cache/compare/v1.9.1...v1.9.2-beta
[2.0.0-beta]: https://github.com/Automattic/wp-super-cache/compare/v1.9.4...v2.0.0
[1.9.4-beta]: https://github.com/Automattic/wp-super-cache/compare/v1.9.3...v1.9.4
[1.9.3-beta]: https://github.com/Automattic/wp-super-cache/compare/v1.9.2...v1.9.3
[1.9.2-beta]: https://github.com/Automattic/wp-super-cache/compare/v1.9.1...v1.9.2
[1.9.1]: https://github.com/Automattic/wp-super-cache/compare/v1.9.0...v1.9.1
[1.9.0]: https://github.com/Automattic/wp-super-cache/compare/v1.8...v1.9
[1.8]: https://github.com/Automattic/wp-super-cache/compare/v1.7.9...v1.8
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ Your theme is probably responsive which means it resizes the page to suit whatev


== Changelog ==
### 1.10.0-beta - 2023-08-01
### 2.0.0-beta - 2023-08-01
#### Added
- Caching: Added support for the 'Accept' HTTP Header. Prevent caching JSON content.
- Preload: Improved preload notification panel shows the last 5 preloaded URLs.
Expand Down
6 changes: 3 additions & 3 deletions wp-cache-phase2.php
Original file line number Diff line number Diff line change
Expand Up @@ -1059,17 +1059,17 @@ function supercache_filename() {
}

function get_oc_version() {
_deprecated_function( __FUNCTION__, '1.10.0' );
_deprecated_function( __FUNCTION__, '2.0.0' );
}

// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
function reset_oc_version( $version = 1 ) {
_deprecated_function( __FUNCTION__, '1.10.0' );
_deprecated_function( __FUNCTION__, '2.0.0' );
}

// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
function get_oc_key( $url = false ) {
_deprecated_function( __FUNCTION__, '1.10.0' );
_deprecated_function( __FUNCTION__, '2.0.0' );
}

function wp_supercache_cache_for_admins() {
Expand Down
2 changes: 1 addition & 1 deletion wp-cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

define( 'WPSC_VERSION', '1.9.1-alpha' );
define( 'WPSC_VERSION', '2.0.0-beta' );

require_once( __DIR__. '/inc/delete-cache-button.php');
require_once( __DIR__. '/inc/preload-notification.php');
Expand Down

0 comments on commit f07466b

Please sign in to comment.