Skip to content

Commit 69c3f5f

Browse files
Preparation for 0.7.1
1 parent 6152e89 commit 69c3f5f

File tree

6 files changed

+56
-7
lines changed

6 files changed

+56
-7
lines changed

Diff for: 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"
7+
"version": "0.7.1-alpha.0"
88
}

Diff for: packages/foam-cli/README.md

+40-1
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 darwin-x64 node-v12.18.2
22+
foam-cli/0.7.1-alpha.0 darwin-x64 node-v12.18.2
2323
$ foam --help [COMMAND]
2424
USAGE
2525
$ foam COMMAND
@@ -29,6 +29,8 @@ 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)
3234

3335
## `foam help [COMMAND]`
3436

@@ -46,6 +48,43 @@ OPTIONS
4648
```
4749

4850
_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.1-alpha.0/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.1-alpha.0/src/commands/migrate.ts)_
4988
<!-- commandsstop -->
5089

5190
## Development

Diff for: 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",
4+
"version": "0.7.1-alpha.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",
14+
"foam-core": "^0.7.1-alpha.0",
1515
"ora": "^4.0.4",
1616
"tslib": "^1"
1717
},

Diff for: 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",
5+
"version": "0.7.1-alpha.0",
66
"license": "MIT",
77
"files": [
88
"dist"

Diff for: packages/foam-vscode/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to the "foam-vscode" extension will be documented in this fi
44

55
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

7+
## [0.7.1] - 2020-11-27
8+
9+
New Feature:
10+
- Foam logging can now be inspected in VsCode Output panel (#377)
11+
12+
Fixes and Improvements:
13+
- Foam model: Fixed bug in tags parsing (#382)
14+
- Dataviz: Graph canvas now resizes with window (#383, #375)
15+
- Dataviz: Limit label length for placeholder nodes (#381)
16+
717
## [0.7.0] - 2020-11-25
818

919
New Features:

Diff for: 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",
11+
"version": "0.7.1-alpha.0",
1212
"license": "MIT",
1313
"publisher": "foam",
1414
"engines": {
@@ -200,6 +200,6 @@
200200
},
201201
"dependencies": {
202202
"dateformat": "^3.0.3",
203-
"foam-core": "^0.7.0"
203+
"foam-core": "^0.7.1-alpha.0"
204204
}
205205
}

0 commit comments

Comments
 (0)