Skip to content

Commit f7a2d73

Browse files
committed
Product version bump update
1 parent bd950d7 commit f7a2d73

8 files changed

Lines changed: 17 additions & 17 deletions

README.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: woocommerce, pinterest, advertise
44
Requires at least: 5.6
55
Tested up to: 5.8
66
Requires PHP: 7.3
7-
Stable tag: 1.0.8
7+
Stable tag: 1.0.9
88
License: GPLv3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1010

@@ -87,7 +87,7 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](hhttps:
8787

8888
== Changelog ==
8989

90-
= 1.0.9 - 2022-xx-xx =
90+
= 1.0.9 - 2022-03-29 =
9191
* Add - Plugin update framework. ( [#390](https://github.com/woocommerce/pinterest-for-woocommerce/pull/390 ) )
9292
* Tweak - Use website verification instead of domains. ( [#391](https://github.com/woocommerce/pinterest-for-woocommerce/pull/391) )
9393
* Tweak - Move deactivation hook to plugin file ( [#397](https://github.com/woocommerce/pinterest-for-woocommerce/pull/397) )

changelog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
*** Pinterest for WooCommerce Changelog ***
22

3-
= 1.0.9 - 2022-xx-xx =
3+
= 1.0.9 - 2022-03-29 =
44
* Add - Plugin update framework. ( [#390](https://github.com/woocommerce/pinterest-for-woocommerce/pull/390 ) )
55
* Tweak - Use website verification instead of domains. ( [#391](https://github.com/woocommerce/pinterest-for-woocommerce/pull/391) )
66
* Tweak - Move deactivation hook to plugin file ( [#397](https://github.com/woocommerce/pinterest-for-woocommerce/pull/397) )

class-pinterest-for-woocommerce.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ function() use ( $errors ) {
340340
/**
341341
* Plugin update entry point.
342342
*
343-
* @since x.x.x
343+
* @since 1.0.9
344344
* @return void
345345
*/
346346
public function maybe_update_plugin() {

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pinterest-for-woocommerce",
33
"title": "Pinterest for WooCommerce",
44
"description": "Pinterest for WooCommerce",
5-
"version": "1.0.8",
5+
"version": "1.0.9",
66
"main": "gulpfile.js",
77
"repository": {
88
"type": "git",

pinterest-for-woocommerce.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Plugin Name: Pinterest for WooCommerce
1414
* Plugin URI: https://woocommerce.com/products/pinterest-for-woocommerce/
1515
* Description: Grow your business on Pinterest! Use this official plugin to allow shoppers to Pin products while browsing your store, track conversions, and advertise on Pinterest.
16-
* Version: 1.0.8
16+
* Version: 1.0.9
1717
* Author: WooCommerce
1818
* Author URI: https://woocommerce.com
1919
* License: GPL-2.0+
@@ -44,7 +44,7 @@
4444
}
4545

4646
define( 'PINTEREST_FOR_WOOCOMMERCE_PLUGIN_FILE', __FILE__ );
47-
define( 'PINTEREST_FOR_WOOCOMMERCE_VERSION', '1.0.8' ); // WRCS: DEFINED_VERSION.
47+
define( 'PINTEREST_FOR_WOOCOMMERCE_VERSION', '1.0.9' ); // WRCS: DEFINED_VERSION.
4848

4949
/**
5050
* Autoload packages.

src/PluginUpdate.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class PluginUpdate {
3232
/**
3333
* Check if the plugin is up to date.
3434
*
35-
* @since x.x.x
35+
* @since 1.0.9
3636
* @return boolean
3737
*/
3838
public function plugin_is_up_to_date(): bool {
@@ -46,7 +46,7 @@ public function plugin_is_up_to_date(): bool {
4646
/**
4747
* Helper function to check if update to $version is needed.
4848
*
49-
* @since x.x.x
49+
* @since 1.0.9
5050
* @param string $version Version string for which we check if update is needed.
5151
* @return boolean
5252
*/
@@ -63,7 +63,7 @@ private function version_needs_update( string $version ): bool {
6363
* happened. After the update procedure this will return the same version
6464
* as get_plugin_current_version().
6565
*
66-
* @since x.x.x
66+
* @since 1.0.9
6767
* @return string
6868
*/
6969
private function get_plugin_update_version(): string {
@@ -73,7 +73,7 @@ private function get_plugin_update_version(): string {
7373
/**
7474
* Returns the version of the plugin as defined in the main plugin file.
7575
*
76-
* @since x.x.x
76+
* @since 1.0.9
7777
* @return string
7878
*/
7979
private function get_plugin_current_version(): string {
@@ -84,7 +84,7 @@ private function get_plugin_current_version(): string {
8484
* After the update has been completed bump the previous version option to
8585
* the current version option.
8686
*
87-
* @since x.x.x
87+
* @since 1.0.9
8888
* @return void
8989
*/
9090
public function update_plugin_update_version_option(): void {
@@ -97,7 +97,7 @@ public function update_plugin_update_version_option(): void {
9797
/**
9898
* Update procedures entry point.
9999
*
100-
* @since x.x.x
100+
* @since 1.0.9
101101
* @return void
102102
*/
103103
public function maybe_update(): void {
@@ -144,7 +144,7 @@ public function maybe_update(): void {
144144
/**
145145
* Perform update procedures.
146146
*
147-
* @since x.x.x
147+
* @since 1.0.9
148148
* @throws Throwable Update procedure failures.
149149
* @return void
150150
*/
@@ -155,7 +155,7 @@ protected function perform_plugin_updates(): void {
155155
/**
156156
* Update procedure for the 1.0.9 version of the plugin.
157157
*
158-
* @since x.x.x
158+
* @since 1.0.9
159159
* @throws Exception Verification error.
160160
* @return void
161161
*/

src/ProductsXmlFeed.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ private static function get_product_regular_price( $product ) {
563563
* For information about allowed UTF-8 characters please go to
564564
* https://www.w3.org/TR/xml/ documentation, section charsets.
565565
*
566-
* @since x.x.x
566+
* @since 1.0.9
567567
* @param string $xml_fragment XML fragment for sanitization.
568568
* @return string Sanitized XML fragment.
569569
*/

0 commit comments

Comments
 (0)