Skip to content

Commit 75384ec

Browse files
committed
release v0.0.19
- Updating version numbers for release
1 parent 3bdb158 commit 75384ec

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

composer.json

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"description": "GraphQL API for WordPress",
44
"type": "wordpress-plugin",
55
"license": "GPLv3",
6+
"version": "0.0.19",
67
"authors": [
78
{
89
"name": "Jason Bahl",
@@ -13,6 +14,9 @@
1314
},
1415
{
1516
"name": "Ryan Kanner"
17+
},
18+
{
19+
"name": "Hughie Devore"
1620
}
1721
],
1822
"require": {

wp-graphql.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: GraphQL API for WordPress
66
* Author: WPGraphQL
77
* Author URI: http://www.wpgraphql.com
8-
* Version: 0.0.17
8+
* Version: 0.0.19
99
* Text Domain: wp-graphql
1010
* Domain Path: /languages/
1111
* Requires at least: 4.7.0
@@ -17,7 +17,7 @@
1717
* @package WPGraphQL
1818
* @category Core
1919
* @author WPGraphQL
20-
* @version 0.0.17
20+
* @version 0.0.19
2121
*/
2222
// Exit if accessed directly.
2323
if ( ! defined( 'ABSPATH' ) ) {
@@ -156,7 +156,7 @@ private function setup_constants() {
156156

157157
// Plugin version.
158158
if ( ! defined( 'WPGRAPHQL_VERSION' ) ) {
159-
define( 'WPGRAPHQL_VERSION', '0.0.17' );
159+
define( 'WPGRAPHQL_VERSION', '0.0.19' );
160160
}
161161

162162
// Plugin Folder Path.

0 commit comments

Comments
 (0)