Skip to content

Commit

Permalink
0.86.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushmanchhabra committed Apr 3, 2024
1 parent 5c936ed commit 710fa3a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## [0.86.0]

### Changed

- Fix undefined `version` in parsing logic.

## [0.85.0-4]

### Added
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nw",
"version": "0.85.0-4",
"version": "0.86.0",
"description": "An installer for nw.js",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/parse.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default async function parse(options) {
if (prerelease.length > 1) {
prerelease = prerelease.slice(0, -1);
}
options.version = [version, ...prerelease].join('-');
options.version = [options.version, ...prerelease].join('-');
}

/* Check build flavor and slice that off the `version`. */
Expand Down

0 comments on commit 710fa3a

Please sign in to comment.