In this post, we will see how to resolve Using semver, should pre-release versions be based off the previous version number, or the next version number? Question: Doing a pseudo-CD strategy for dev environments and we want to make sure ...

In this post, we will see how to resolve Specify dependency version >= for git repository in pyproject.toml Question: I have a python project with all dependencies and versions managed by pyproject.toml file. One of these dependencies is a git ...

Question: I am working on an API specifications and I am spliting the API into multiple yaml files. I am using semantic versioning strategy (major.minor.patch). If I need to make a breaking change in one of the files, then I ...

Question: I am using a Gitlab pipeline to build and publish my application. We specify our version in the AssemblyInfo.Version.cs file: I am looking for a way to append the Gitlab pipeline ID to the end of this version string. ...

Question: I want to store a set of integers that get auto incremented at build time: When I compile, it would auto-increment Revision. When I build the setup project, it would increment MinorVersion (I’m OK with doing this manually). MajorVersion ...

Question: We are currently working in a private beta and so are still in the process of making fairly rapid changes, although obviously as usage is starting to ramp up, we will be slowing down this process. That being said, ...

Question: Is there a way to get the version set in package.json in a nodejs app? I would want something like this Best Answer: I found that the following code fragment worked best for me. Since it uses require to ...

Question: Are there any known how-tos or best practices for web service REST API versioning? I have noticed that AWS does versioning by the URL of the endpoint. Is this the only way or are there other ways to accomplish ...

Question: I’ve started playing with Git and have come across the terms “upstream” and “downstream”. I’ve seen these before but never understood them fully. What do these terms mean in the context of SCMs (Software Configuration Management tools) and source ...

Question: How do I mark a method as obsolete or deprecated using C#? Best Answer: The shortest way is by adding the ObsoleteAttribute as an attribute to the method. Make sure to include an appropriate explanation: You can also cause ...