Skip to content

Commit

Permalink
Temporary Fix: Remove sorting release tags to support non-semver tags
Browse files Browse the repository at this point in the history
  • Loading branch information
mllocs committed Dec 21, 2018
1 parent c7db4d2 commit 6ce4b26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ async function getReleases (commits, remote, latestVersion, options) {
]
}
}
return uniqBy(releases, 'tag').sort(sortReleases)
return uniqBy(releases, 'tag')//.sort(sortReleases)
}

export default async function run (argv) {
Expand Down

0 comments on commit 6ce4b26

Please sign in to comment.