Skip to content

Commit c1859ac

Browse files
committed
Bump
1 parent e2be15a commit c1859ac

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

components/wordpress_com/actions/create-post/create-post.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "wordpress_com-create-post",
55
name: "Create New Post",
66
description: "Creates a new post on a WordPress.com site. [See the documentation](https://developer.wordpress.com/docs/api/1.1/post/sites/%24site/posts/new/)",
7-
version: "0.0.8",
7+
version: "0.0.9",
88
type: "action",
99
props: {
1010
wordpress,

components/wordpress_com/actions/delete-post/delete-post.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "wordpress_com-delete-post",
55
name: "Delete Post",
66
description: "Deletes a post. [See the documentation](https://developer.wordpress.com/docs/api/1.1/post/sites/%24site/posts/%24post_ID/delete/)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
wordpress,
@@ -47,7 +47,7 @@ export default {
4747
} catch (error) {
4848
wordpress.throwCustomError("Could not delete post", error, warnings);
4949
};
50-
50+
5151
$.export("$summary", `Post ID “${response?.ID}” has been successfully deleted` +
5252
"\n- " + warnings.join("\n- "));
5353
},

components/wordpress_com/sources/new-comment/new-comment.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "wordpress_com-new-comment",
55
name: "New Comment",
66
description: "Emit new event for each new comment added since the last run. If no new comments, emit nothing.",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
type: "source",
99
dedupe: "unique",
1010
methods: {

components/wordpress_com/sources/new-follower/new-follower.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "wordpress_com-new-follower",
55
name: "New Follower",
66
description: "Emit new event for each new follower that subscribes to the site.",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
type: "source",
99
dedupe: "unique",
1010
methods: {

components/wordpress_com/sources/new-post/new-post.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "wordpress_com-new-post",
55
name: "New Post",
66
description: "Emit new event for each new post published since the last run. If no new posts, emit nothing.",
7-
version: "0.0.3",
7+
version: "0.0.4",
88
type: "source",
99
dedupe: "unique",
1010
props: {

0 commit comments

Comments
 (0)