public ElasticVersion Change()

in Elastic.Console/ElasticVersion.cs [107:114]


        public ElasticVersion Change(int? major = null, int? minor = null, int? patch = null, string prerelease = null)
        {
            return new ElasticVersion(
                major ?? this.Major,
                minor ?? this.Minor,
                patch ?? this.Patch,
                prerelease ?? this.Prerelease);
        }