Skip to content

Commit eef65c3

Browse files
authored
Merge pull request #165 from woocommerce/release/2.0.0
Release 2.0.0
2 parents a4feafa + 4649e0d commit eef65c3

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ gulp.task( 'javascript', function () {
6565
});
6666

6767
gulp.task( 'pot', function () {
68-
return gulp.src( [ '**/**.php', '!node_modules/**'] )
68+
return gulp.src( [ '**/**.php', '!node_modules/**', '!build/**' ] )
6969
.pipe( sort() )
7070
.pipe( wpPot( {
7171
domain: 'sensei-content-drip',

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
@@ -1,7 +1,7 @@
11
{
22
"name": "sensei-content-drip",
33
"title": "Sensei Content Drip",
4-
"version": "2.0.0-beta.2",
4+
"version": "2.0.0",
55
"homepage": "http://www.woothemes.com/products/sensei-content-drip/",
66
"repository": {
77
"type": "git",

sensei-content-drip.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/*
33
* Plugin Name: Sensei Content Drip
4-
* Version: 2.0.0-beta.2
4+
* Version: 2.0.0
55
* Plugin URI: https://woocommerce.com/products/sensei-content-drip/
66
* Description: Control access to Sensei lessons by scheduling them to become available after a determined time.
77
* Author: Automattic
@@ -21,7 +21,7 @@
2121
exit;
2222
}
2323

24-
define( 'SENSEI_CONTENT_DRIP_VERSION', '2.0.0-beta.2' );
24+
define( 'SENSEI_CONTENT_DRIP_VERSION', '2.0.0' );
2525
define( 'SENSEI_CONTENT_DRIP_PLUGIN_FILE', __FILE__ );
2626
define( 'SENSEI_CONTENT_DRIP_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
2727

0 commit comments

Comments
 (0)