Skip to content

Commit

Permalink
Bump version to 1.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixarntz committed Nov 20, 2019
1 parent b5d1314 commit b524540
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 27 deletions.
4 changes: 2 additions & 2 deletions google-site-kit.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Plugin Name: Site Kit by Google
* Plugin URI: https://sitekit.withgoogle.com
* Description: Site Kit is a one-stop solution for WordPress users to use everything Google has to offer to make them successful on the web.
* Version: 1.0.4
* Version: 1.1.0
* Author: Google
* Author URI: https://opensource.google.com
* License: Apache License 2.0
Expand All @@ -24,7 +24,7 @@
}

// Define most essential constants.
define( 'GOOGLESITEKIT_VERSION', '1.0.4' );
define( 'GOOGLESITEKIT_VERSION', '1.1.0' );
define( 'GOOGLESITEKIT_PLUGIN_MAIN_FILE', __FILE__ );

/**
Expand Down
2 changes: 1 addition & 1 deletion includes/Core/Admin_Bar/Admin_Bar.php
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ private function is_admin_post_screen() {
*
* This is only relevant if the current context is AMP.
*
* @since n.e.x.t
* @since 1.1.0
*
* @return bool True if AMP dev mode is enabled, false otherwise.
*/
Expand Down
12 changes: 6 additions & 6 deletions includes/Core/Authentication/Authentication.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,15 +89,15 @@ final class Authentication {
/**
* Verification meta instance.
*
* @since n.e.x.t
* @since 1.1.0
* @var Verification_Meta
*/
protected $verification_meta;

/**
* Verification file instance.
*
* @since n.e.x.t
* @since 1.1.0
* @var Verification_File
*/
protected $verification_file;
Expand Down Expand Up @@ -234,19 +234,19 @@ public function verification() {
* Gets the verification tag instance.
*
* @since 1.0.0
* @deprecated n.e.x.t
* @deprecated 1.1.0
*
* @return Verification_Meta Verification tag instance.
*/
public function verification_tag() {
_deprecated_function( __METHOD__, 'n.e.x.t', __CLASS__ . '::verification_meta()' );
_deprecated_function( __METHOD__, '1.1.0', __CLASS__ . '::verification_meta()' );
return $this->verification_meta;
}

/**
* Gets the verification meta instance.
*
* @since n.e.x.t
* @since 1.1.0
*
* @return Verification_Meta Verification tag instance.
*/
Expand All @@ -257,7 +257,7 @@ public function verification_meta() {
/**
* Gets the verification file instance.
*
* @since n.e.x.t
* @since 1.1.0
*
* @return Verification_File Verification file instance.
*/
Expand Down
4 changes: 2 additions & 2 deletions includes/Core/Authentication/Clients/OAuth_Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ public function get_proxy_setup_url( $access_code = '', $error_code = '' ) {
/**
* Gets the list of features to declare support for when setting up with the proxy.
*
* @since n.e.x.t
* @since 1.1.0
* @return array
*/
private function get_proxy_setup_supports() {
Expand All @@ -684,7 +684,7 @@ private function get_proxy_setup_supports() {
* The site must be a root install, with no path in the home URL
* to be able to serve the verification response properly.
*
* @since n.e.x.t
* @since 1.1.0
* @see \WP_Rewrite::rewrite_rules for robots.txt
*
* @return bool
Expand Down
12 changes: 6 additions & 6 deletions includes/Core/Authentication/Verification_File.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Class representing the site verification file token for a user.
*
* @since n.e.x.t
* @since 1.1.0
* @access private
* @ignore
*/
Expand All @@ -29,15 +29,15 @@ final class Verification_File {
/**
* User_Options object.
*
* @since n.e.x.t
* @since 1.1.0
* @var User_Options
*/
private $user_options;

/**
* Constructor.
*
* @since n.e.x.t
* @since 1.1.0
*
* @param User_Options $user_options User Options instance.
*/
Expand All @@ -48,7 +48,7 @@ public function __construct( User_Options $user_options ) {
/**
* Retrieves the user verification file token.
*
* @since n.e.x.t
* @since 1.1.0
*
* @return string|bool Verification file token, or false if not set.
*/
Expand All @@ -59,7 +59,7 @@ public function get() {
/**
* Saves the user verification file token.
*
* @since n.e.x.t
* @since 1.1.0
* @param string $token Token portion of file name to store.
*
* @return bool True on success, false on failure.
Expand All @@ -71,7 +71,7 @@ public function set( $token ) {
/**
* Checks whether a verification file token for the user is present.
*
* @since n.e.x.t
* @since 1.1.0
*
* @return bool True if verification file token is set, false otherwise.
*/
Expand Down
2 changes: 1 addition & 1 deletion includes/Core/Authentication/Verification_Meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Class representing the site verification meta tag for a user.
*
* @since n.e.x.t
* @since 1.1.0
* @access private
* @ignore
*/
Expand Down
6 changes: 3 additions & 3 deletions includes/Core/Util/Exit_Handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
/**
* Exit_Handler class.
*
* @since n.e.x.t
* @since 1.1.0
* @access private
* @ignore
*/
class Exit_Handler {
/**
* Invokes the handler.
*
* @since n.e.x.t
* @since 1.1.0
*/
public function invoke() {
$callback = static function () {
Expand All @@ -32,7 +32,7 @@ public function invoke() {
/**
* Allows the callback to be filtered during tests.
*
* @since n.e.x.t
* @since 1.1.0
* @param \Closure $callback Exit handler callback.
*/
$callback = apply_filters( 'googlesitekit_exit_handler', $callback );
Expand Down
4 changes: 2 additions & 2 deletions includes/Modules/Analytics.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ function( $data ) {
/**
* Checks whether or not tracking snippet should be contextually disabled for this request.
*
* @since n.e.x.t
* @since 1.1.0
*
* @return bool
*/
Expand All @@ -180,7 +180,7 @@ protected function is_tracking_disabled() {
/**
* Filters whether or not the Analytics tracking snippet is output for the current request.
*
* @since n.e.x.t
* @since 1.1.0
*
* @param $disabled bool Whether to disable tracking or not.
*/
Expand Down
6 changes: 3 additions & 3 deletions includes/Modules/Site_Verification.php
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ protected function setup_services( Google_Client $client ) {
/**
* Handles receiving a verification token for a user by the authentication proxy.
*
* @since n.e.x.t
* @since 1.1.0
*/
private function handle_verification_token() {
$authentication = $this->authentication;
Expand Down Expand Up @@ -423,7 +423,7 @@ private function handle_verification_token() {
/**
* Prints site verification meta in wp_head().
*
* @since n.e.x.t
* @since 1.1.0
*/
private function print_site_verification_meta() {
// Get verification meta tags for all users.
Expand Down Expand Up @@ -451,7 +451,7 @@ private function print_site_verification_meta() {
*
* @param string $verification_token Token portion of verification.
*
* @since n.e.x.t
* @since 1.1.0
*/
private function serve_verification_file( $verification_token ) {
global $wpdb;
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Contributors: google
Requires at least: 4.7
Tested up to: 5.3
Requires PHP: 5.4
Stable tag: 1.0.4
Stable tag: 1.1.0
License: Apache License 2.0
License URI: https://www.apache.org/licenses/LICENSE-2.0
Tags: google, search-console, analytics, adsense, pagespeed-insights, optimize, tag-manager, site-kit
Expand Down

0 comments on commit b524540

Please sign in to comment.