Top "Semantic-versioning" questions

Semantic Versioning is a community-driven version-numbering standard.

Are there npm version prerelease identifiers?

There is a very handy npm version command. Besides arguments like major, minor and patch it accepts arguments like prerelease, …

npm versioning semantic-versioning npm-cli
npm install using pre-release versions

i want to use pre-release versions in my package.json to get some dependencies in the latest version (containing als …

node.js npm semantic-versioning
Where do you store your Rails Application's version number?

We use the wonderful semantic versioning paradigm when versioning our rails app. One question I had was where is it …

ruby-on-rails versioning semantic-versioning
npm version to add alpha postfix

How can i bump the package.json version to contain -alpha using npm versioning. Running npm version <new version&…

node.js npm semantic-versioning
How to get the semver Major part of a Maven version?

Is it possible to get the major version (<Major>.<Minor>.<Patch>) of the project.…

maven semantic-versioning
Semantic versioning of REST apis?

I've evaluated a number of versioning schemas for REST apis (header, url, …). So far, the most reliable approach seems to …

api rest versioning semantic-versioning
Update package to a major release with NPM

Inside a Node.js project, it's not clear to me what is the correct workflow to ugpgrade a package to …

node.js npm updates semantic-versioning
Azure Pipeline Nuget Package Versioning Scheme, How to Get "1.0.$(Rev:r)"

I'm setting up an Azure Pipelines build that needs to package a C# .NET class library into a NuGet package. …

continuous-integration azure-devops nuget azure-pipelines semantic-versioning
How to sort semantic versions in bash?

I would like to sort semantic versions (semver.org) v1.4.0 v1.4.0-alpha v1.4.0-alpha1 v1.4.0-patch v1.4.0-patch9 v1.4.0-patch10 …

bash sorting version semantic-versioning
What is the meaning of -rc in semantic versioning?

I get the logic of MAJOR.MINOR.PATCH and kinda intuitively get what -alpha and -beta mean at the end …

semantic-versioning