Skip to content

Commit

Permalink
Version bumped to 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
asaquzzaman committed Jun 29, 2018
1 parent b9023d2 commit 92aa1be
Show file tree
Hide file tree
Showing 9 changed files with 76 additions and 134 deletions.
28 changes: 28 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# Matches multiple files with brace expansion notation
# Set default charset
[*.{js,py}]
charset = utf-8

# 4 space indentation
[*.py]
indent_style = space
indent_size = 4

# Tab indentation (no size specified)
[Makefile]
indent_style = tab

# Matches the exact files either package.json or .travis.yml
[{package.json,.travis.yml}]
indent_style = space
indent_size = 2
1 change: 1 addition & 0 deletions .svnignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ phpunit.xml.dist
composer.lock
bin
tmp
.editorconfig
8 changes: 6 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,13 @@ module.exports = function(grunt) {


grunt.registerTask( 'release', [
'run',
]);

grunt.registerTask( 'zip', [
'clean',
'run',
'copy',
'compress'
])
};
]);
};
2 changes: 1 addition & 1 deletion config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
return [
'name' => 'Project Manager',
'slug' => 'pm',
'version' => '2.0.0-beta',
'version' => '2.0.1',
'api' => '2',
'db_version' => '2.0',
'text_domain' => 'pm'
Expand Down
2 changes: 1 addition & 1 deletion cpm.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: WordPress Project Management plugin. Manage your projects and tasks, get things done.
* Author: weDevs
* Author URI: https://wedevs.com
* Version: 2.0
* Version: 2.0.1
* Text Domain: wedevs-project-manager
* Domain Path: /languages
* License: GPL2
Expand Down
Loading

0 comments on commit 92aa1be

Please sign in to comment.