Skip to content

Commit 788ccbd

Browse files
v0.7.0
1 parent cdaeefb commit 788ccbd

File tree

5 files changed

+7
-46
lines changed

5 files changed

+7
-46
lines changed

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
],
55
"npmClient": "yarn",
66
"useWorkspaces": true,
7-
"version": "0.7.0-alpha.4"
7+
"version": "0.7.0"
88
}

packages/foam-cli/README.md

+1-40
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $ npm install -g foam-cli
1919
$ foam COMMAND
2020
running command...
2121
$ foam (-v|--version|version)
22-
foam-cli/0.7.0-alpha.4 darwin-x64 node-v12.18.2
22+
foam-cli/0.7.0 darwin-x64 node-v12.18.2
2323
$ foam --help [COMMAND]
2424
USAGE
2525
$ foam COMMAND
@@ -29,8 +29,6 @@ USAGE
2929
# Commands
3030
<!-- commands -->
3131
* [`foam help [COMMAND]`](#foam-help-command)
32-
* [`foam janitor [WORKSPACEPATH]`](#foam-janitor-workspacepath)
33-
* [`foam migrate [WORKSPACEPATH]`](#foam-migrate-workspacepath)
3432

3533
## `foam help [COMMAND]`
3634

@@ -48,43 +46,6 @@ OPTIONS
4846
```
4947

5048
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.1.0/src/commands/help.ts)_
51-
52-
## `foam janitor [WORKSPACEPATH]`
53-
54-
Updates link references and heading across all the markdown files in the given workspaces
55-
56-
```
57-
USAGE
58-
$ foam janitor [WORKSPACEPATH]
59-
60-
OPTIONS
61-
-h, --help show CLI help
62-
-w, --without-extensions generate link reference definitions without extensions (for legacy support)
63-
64-
EXAMPLE
65-
$ foam-cli janitor path-to-foam-workspace
66-
```
67-
68-
_See code: [src/commands/janitor.ts](https://github.com/foambubble/foam/blob/v0.7.0-alpha.4/src/commands/janitor.ts)_
69-
70-
## `foam migrate [WORKSPACEPATH]`
71-
72-
Updates file names, link references and heading across all the markdown files in the given workspaces
73-
74-
```
75-
USAGE
76-
$ foam migrate [WORKSPACEPATH]
77-
78-
OPTIONS
79-
-h, --help show CLI help
80-
-w, --without-extensions generate link reference definitions without extensions (for legacy support)
81-
82-
EXAMPLE
83-
$ foam-cli migrate path-to-foam-workspace
84-
Successfully generated link references and heading!
85-
```
86-
87-
_See code: [src/commands/migrate.ts](https://github.com/foambubble/foam/blob/v0.7.0-alpha.4/src/commands/migrate.ts)_
8849
<!-- commandsstop -->
8950

9051
## Development

packages/foam-cli/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "foam-cli",
33
"description": "Foam CLI",
4-
"version": "0.7.0-alpha.4",
4+
"version": "0.7.0",
55
"author": "Jani Eväkallio @jevakallio",
66
"bin": {
77
"foam": "./bin/run"
@@ -11,7 +11,7 @@
1111
"@oclif/command": "^1",
1212
"@oclif/config": "^1",
1313
"@oclif/plugin-help": "^3",
14-
"foam-core": "^0.7.0-alpha.4",
14+
"foam-core": "^0.7.0",
1515
"ora": "^4.0.4",
1616
"tslib": "^1"
1717
},

packages/foam-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "foam-core",
33
"author": "Jani Eväkallio",
44
"repository": "https://github.com/foambubble/foam",
5-
"version": "0.7.0-alpha.4",
5+
"version": "0.7.0",
66
"license": "MIT",
77
"files": [
88
"dist"

packages/foam-vscode/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"type": "git"
99
},
1010
"homepage": "https://github.com/foambubble/foam",
11-
"version": "0.7.0-alpha.4",
11+
"version": "0.7.0",
1212
"license": "MIT",
1313
"publisher": "foam",
1414
"engines": {
@@ -185,6 +185,6 @@
185185
},
186186
"dependencies": {
187187
"dateformat": "^3.0.3",
188-
"foam-core": "^0.7.0-alpha.4"
188+
"foam-core": "^0.7.0"
189189
}
190190
}

0 commit comments

Comments
 (0)