Skip to content

Commit f792f4e

Browse files
committed
Version bump
1 parent 24a45da commit f792f4e

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,9 @@ Please note that any global npm modules you may have installed are **not** share
111111

112112
Users have reported some problems using antivirus, specifically McAfee. It appears the antivirus software is manipulating access to the VBScript engine. See [issue #133](https://github.com/coreybutler/nvm-windows/issues/133) for details and resolution.
113113

114-
Releases _up to_ v1.1.7 are code-signed by [Ecor Ventures LLC](https://ecorventures.com)/[Author.io](https://author.io). This should help prevent false positives with most antivirus software. v1.1.8+ is not code signed (see release notes for reasons).
114+
**v1.1.8 is not code signed**, but all other versions are signed by [Ecor Ventures LLC](https://ecorventures.com)/[Author.io](https://author.io). This should help prevent false positives with most antivirus software.
115+
116+
> v1.1.8+ was not code signed due to an expired certificate (see the [release notes](https://github.com/coreybutler/nvm-windows/releases/tag/1.1.8) for reasons). **v1.1.9 _is_ code signed** thanks to [ajyong](https://github.com/ajyong), who sponsored the new certificate.
115117
116118
### Using Yarn
117119

nvm.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define MyAppName "NVM for Windows"
22
#define MyAppShortName "nvm"
33
#define MyAppLCShortName "nvm"
4-
#define MyAppVersion "1.1.8"
4+
#define MyAppVersion "1.1.9"
55
#define MyAppPublisher "Ecor Ventures LLC"
66
#define MyAppURL "https://github.com/coreybutler/nvm-windows"
77
#define MyAppExeName "nvm.exe"

src/nvm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
)
2727

2828
const (
29-
NvmVersion = "1.1.8"
29+
NvmVersion = "1.1.9"
3030
)
3131

3232
type Environment struct {

updater/nvm-update.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"golang.org/x/sys/windows/registry"
1818
)
1919

20-
var version = "1.1.8"
20+
var version = "1.1.9"
2121

2222
func main() {
2323
// baseVersion := version

0 commit comments

Comments
 (0)