Skip to content

Commit b297745

Browse files
committed
3.0.1 version bump for mass release
1 parent b701cde commit b297745

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
1111

1212
---
1313

14-
## [3.0.0] - (04-01-2021)
14+
## [3.0.1] - (05-06-2021)
1515

1616
The main purpose behind this major release is a complete overhaul of the underlying rest/api calls. Most of the functionality has been moved to the f5-conx-core project/package so it can be consumed by others. F5-conx-core is now providing most of the device connectivity and function management within the vscode-f5 extension. Most of the code within the vscode-f5 extension is focused on providing the UI for all this functionality
1717

@@ -75,6 +75,9 @@ The main purpose behind this major release is a complete overhaul of the underly
7575
- rolled back @types/vscode package to 1.50.0 to support older versions of vscode (mainly udf coder)
7676
- beta.14 - 4.16
7777
- pushed up @types/vscode package to 1.52.0 to support new markdown features in view hovers
78+
- beta.15 - 4.26
79+
- Stopped "f5" output from showing at activation. This was trampling on workflows outside the extension
80+
- When the main extension view becomes visible, then the "f5" output will also become visible
7881

7982
---
8083

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "The F5 Extension",
44
"description": "Supercharge your F5 automation development",
55
"publisher": "F5DevCentral",
6-
"version": "3.0.0-beta.14",
6+
"version": "3.0.1",
77
"keywords": [
88
"F5",
99
"F5Networks",

src/utils/logger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export class Log {
4040
// create output channel if not available
4141
if (!this.outputChannel) {
4242
this.outputChannel = window.createOutputChannel('f5');
43-
this.outputChannel.show(true);
43+
// this.outputChannel.show(true);
4444
}
4545
}
4646

0 commit comments

Comments
 (0)