Skip to content

Commit 8c12cf4

Browse files
committed
Merge branch 'emoji-log-prefixes'
2 parents b627462 + 0cfa26d commit 8c12cf4

File tree

5 files changed

+21
-7
lines changed

5 files changed

+21
-7
lines changed

packages/agent/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# mycoder-agent
22

3+
## 0.2.1
4+
5+
### Patch Changes
6+
7+
- Removed debug logging, fixed package.json urls for git repo.
8+
39
## 0.2.0
410

511
### Minor Changes

packages/agent/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mycoder-agent",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Agent module for mycoder - an AI-powered software development assistant",
55
"type": "module",
66
"main": "dist/index.js",
@@ -12,11 +12,11 @@
1212
},
1313
"repository": {
1414
"type": "git",
15-
"url": "git+https://github.com/drivecore/mycoder-monorepo.git"
15+
"url": "git+https://github.com/drivecore/mycoder.git"
1616
},
1717
"homepage": "https://mycoder.ai",
1818
"bugs": {
19-
"url": "https://github.com/drivecore/mycoder-monorepo/issues"
19+
"url": "https://github.com/drivecore/mycoder/issues"
2020
},
2121
"publishConfig": {
2222
"access": "public"

packages/agent/src/tools/browser/BrowserManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class BrowserManager {
1818
async createSession(config?: BrowserConfig): Promise<BrowserSession> {
1919
try {
2020
const sessionConfig = { ...this.defaultConfig, ...config };
21-
console.log('sessionConfig', sessionConfig);
21+
//console.log('sessionConfig', sessionConfig);
2222
const browser = await chromium.launch({
2323
headless: sessionConfig.headless,
2424
});

packages/cli/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# mycoder
22

3+
## 0.2.1
4+
5+
### Patch Changes
6+
7+
- Removed debug logging, fixed package.json urls for git repo.
8+
- Updated dependencies
9+
10+
311
## 0.2.0
412

513
### Minor Changes

packages/cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mycoder",
33
"description": "A command line tool using agent that can do arbitrary tasks, including coding tasks",
4-
"version": "0.2.0",
4+
"version": "0.2.1",
55
"type": "module",
66
"bin": "./bin/cli.js",
77
"main": "./dist/index.js",
@@ -12,11 +12,11 @@
1212
},
1313
"repository": {
1414
"type": "git",
15-
"url": "git+https://github.com/drivecore/mycoder-monorepo.git"
15+
"url": "git+https://github.com/drivecore/mycoder.git"
1616
},
1717
"homepage": "https://mycoder.ai",
1818
"bugs": {
19-
"url": "https://github.com/drivecore/mycoder-monorepo/issues"
19+
"url": "https://github.com/drivecore/mycoder/issues"
2020
},
2121
"scripts": {
2222
"start": "node --no-deprecation bin/cli.js",

0 commit comments

Comments
 (0)