Skip to content

Commit

Permalink
Bump to version 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
kwent committed Oct 18, 2015
1 parent bbb7878 commit b735b0e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/syno.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ execute = function(api, cmd, options) {
});
};

program.version('1.0.5').description('Synology Rest API Command Line').option('-c, --config <path>', "DSM Configuration file. Default to ~/" + CONFIG_DIR + "/" + CONFIG_FILE).option('-u, --url <url>', "DSM URL. Default to " + DEFAULT_PROTOCOL + "://" + DEFAULT_ACCOUNT + ":" + DEFAULT_PASSWD + "@" + DEFAULT_HOST + ":" + DEFAULT_PORT).option('-d, --debug', 'Enabling Debugging Output').on('--help', function() {
program.version('1.0.6').description('Synology Rest API Command Line').option('-c, --config <path>', "DSM Configuration file. Default to ~/" + CONFIG_DIR + "/" + CONFIG_FILE).option('-u, --url <url>', "DSM URL. Default to " + DEFAULT_PROTOCOL + "://" + DEFAULT_ACCOUNT + ":" + DEFAULT_PASSWD + "@" + DEFAULT_HOST + ":" + DEFAULT_PORT).option('-d, --debug', 'Enabling Debugging Output').on('--help', function() {
console.log(' Commands:');
console.log('');
console.log(' filestation|fs [options] <method> DSM File Station API');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "syno",
"version": "1.0.5",
"version": "1.0.6",
"description": "Simple Node.js wrapper (browser included) and CLI for Synology DSM REST API.",
"main": "dist/syno.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/cli/syno.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ execute = (api, cmd, options)->
process.exit 0

program
.version '1.0.5'
.version '1.0.6'
.description 'Synology Rest API Command Line'
.option '-c, --config <path>', "DSM Configuration file. Default to ~/#{CONFIG_DIR}/#{CONFIG_FILE}"
.option '-u, --url <url>',
Expand Down

0 comments on commit b735b0e

Please sign in to comment.