Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

chore(docs): mark builds >= 1.3.0 as stable #10117

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/versions/version-info.js
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ var getTaggedVersion = function() {
* @return {Boolean} True if the version is stable
*/
var isStable = function(version) {
return semver.satisfies(version, '1.0 || 1.2') && version.prerelease.length === 0;
return semver.satisfies(version, '1.0 || 1.2 || >=1.3') && version.prerelease.length === 0;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is not what we want. It should be '1.0 || 1.2 || >=1.3 <1.4.0'

};

/**
Expand Down