Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/0.7.0 #24

Merged
merged 4 commits into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/daab.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ var program = require('commander');
var pkg = require('../package.json');

program
.version(pkg.version)
.version(`daab CLI: ${pkg.version}\n(Are you sure you're not confusing it with 'daab version'? If you want to check the SDK packages, use 'daab version' instead.)`)
.command('init', 'setup the daab environment.')
.command('login', 'login as a bot account.')
.command('logout', 'logout from the service.')
.command('run', 'run the daab. (Ctrl-C to stop)')
.command('start', 'run the daab as a deamon.')
.command('stop', 'stop the daab deamon.')
.command('invites', 'show and accept a domain invite.')
.command('version', 'show your daab version information.')
.command('version', "show the version information of your daab environment (not CLI).")
.parse(process.argv);
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "daab",
"version": "0.6.0",
"version": "0.7.0",
"description": "daab (direct agent assist bot) commandline interface",
"main": "lib/daab.js",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
],
"description": "<%= description %>",
"engines": {
"node": ">= 16",
"npm": ">= 8.3.0"
"node": ">= 18",
"npm": ">= 10"
},
"dependencies": {
"forever": "^4.0.0",
"hubot-direct": ">=3 <4",
"hubot-direct": ">=4 <5",
"lisb-hubot": ">=5 <6",
"lisb-hubot-redis-brain": "^1.0.0"
},
Expand Down
Loading