Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
coreybutler committed Dec 10, 2021
1 parent 24a45da commit f792f4e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -111,7 +111,9 @@ Please note that any global npm modules you may have installed are **not** share

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.

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).
**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.

> 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.
### Using Yarn

Expand Down
2 changes: 1 addition & 1 deletion nvm.iss
@@ -1,7 +1,7 @@
#define MyAppName "NVM for Windows"
#define MyAppShortName "nvm"
#define MyAppLCShortName "nvm"
#define MyAppVersion "1.1.8"
#define MyAppVersion "1.1.9"
#define MyAppPublisher "Ecor Ventures LLC"
#define MyAppURL "https://github.com/coreybutler/nvm-windows"
#define MyAppExeName "nvm.exe"
Expand Down
2 changes: 1 addition & 1 deletion src/nvm.go
Expand Up @@ -26,7 +26,7 @@ import (
)

const (
NvmVersion = "1.1.8"
NvmVersion = "1.1.9"
)

type Environment struct {
Expand Down
2 changes: 1 addition & 1 deletion updater/nvm-update.go
Expand Up @@ -17,7 +17,7 @@ import (
"golang.org/x/sys/windows/registry"
)

var version = "1.1.8"
var version = "1.1.9"

func main() {
// baseVersion := version
Expand Down

0 comments on commit f792f4e

Please sign in to comment.