versioning Questions

6

Solved

In the old .NET framework, you could set the [assembly: AssemblyVersion("1.0.*")] and the compiler would auto-increment the version. With .NET core, I've tried all sorts of things, but I ...
Patterman asked 10/8, 2020 at 4:1

34

Solved

Is there a way to get the version set in the package.json file in a Node.js application? I would want something like this var port = process.env.PORT || 3000 app.listen port console.log "Expre...
Foreword asked 5/2, 2012 at 22:15

18

Solved

While programming software stored in a Subversion repo, I often modify some files, then notice that I'd like to do some preparatory change for my main work. E.g. while implementing new functionalit...
Benefactor asked 12/10, 2009 at 12:26

2

Solved

In Sphinx, file links can be generated using the following syntax: `name_of_file.js <some/location/name_of_file.js>`_ In the conf.py file, a version variable is defined that we can use in ...
Schaffer asked 18/6, 2015 at 16:33

6

Solved

I have found this Q&A. I have tried to get the version from the package.json using: import { version } from './package.json'; but it results in: package.json' has unsupported extension. Th...
Bagnio asked 13/12, 2016 at 14:33

3

Solved

There is a project which depends on google-api-client and google-api-services-drive. google-api-client verion looks like this: 1.23.0, and there is a changelog on github for this library. google-ap...
Paz asked 11/5, 2022 at 15:58

4

I’m working on a project and I wanted to tag or give a version number. I wanted gitlab to tag V 1.0, 1.1, etc. in my gitci.yml file when the merging happens and my CI/CD runs successfully.
Quotidian asked 28/8, 2020 at 12:23

30

Solved

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. ...
Saltzman asked 28/8, 2008 at 14:30

25

Solved

I have a version number of the following form: version.release.modification where version, release and modification are either a set of digits or the '*' wildcard character. Additionally, any of ...
Hughett asked 17/9, 2008 at 11:10

2

I've a maven project and I'm using the maven-release-plugin to prepare the release. When I run the mvn --batch-mode release:prepare command, it creates two commits as follows (HEAD -> develop) ...
Liba asked 17/4, 2021 at 14:37

12

Solved

This question is very similar to Setting the version number for .NET Core projects, but not the same. Using the latest stable version of .NET Core at the time of writing (1.1) and VS2017, .NET Core...

10

Solved

How do I use npm to show the latest version of a module? I am expecting something like npm --latest express to print out v3.0.0.
Simulcast asked 14/8, 2012 at 9:27

33

Solved

Is there a standard idiom for comparing version numbers? I can't just use a straight String compareTo because I don't know yet what the maximum number of point releases there will be. I need to com...
Servia asked 13/10, 2008 at 17:54

2

Solved

After updating to xcode 12.3. I cannot find the settings for build and version numbers. The xcode help itself also still has directions to the old project editor window and settings. Has anyone fou...
Lifeordeath asked 3/1, 2021 at 8:58

2

Solved

I am new to the concept of SemVer. It's seems like very promising idea to implement in my current project. According to the SemVer concept, if a project is name project-a.b.c then, a is Major updat...
Formaldehyde asked 10/4, 2022 at 2:26

7

Solved

My use case is I want to have a unique version number for artifacts per each build/run. With current tools like CircleCI, Travis, etc. there is a build number available which is basically a counter...

4

Solved

since Github Releases are actually a Git Tags, I want to auto-upgrade my package.json version when there is a new Release (and tag), with Github Action. I know I need to trigger a job on: release,...
Sheepdip asked 13/12, 2019 at 9:9

4

Solved

I'm currently working on migrating the file backup system for my office to Amazon S3. The basic backup is working like a charm but I'm looking to make it a little more robust. Specifically I am loo...
Karykaryl asked 5/5, 2014 at 23:27

10

Solved

I have an Amazon S3 bucket with versioning enabled. Due to a misconfigured lifecycle policy, many of the objects in this bucket had Delete Markers added to them. I can remove these markers from th...
Auliffe asked 19/8, 2015 at 21:39

7

Solved

I want to display the Git version on my site. How can I display a semantic version number from Git, that non-technical users of a site can easily reference when raising issues?
Melquist asked 2/5, 2013 at 9:15

3

Solved

When running mvn versions:display-dependency-updates for the Version Maven Plugin I see lots of things like this: [INFO] org.slf4j:slf4j-api ........................... 1.7.36 -> 2.0.0-alpha7 B...
Sontich asked 28/5, 2022 at 15:3

8

Solved

I want to perform a printf() to display when the currently executing code was last compiled. Does C/C++ provide a macro that gives you that resolves to a timestamp during compilation?
Veritable asked 26/3, 2010 at 21:40

5

I want to create a PRO version of my application for Android and was wondering how to structure my repository. For know I have a trunk and feature branches. I'd like to put a pro version in anothe...
Rigsby asked 27/3, 2010 at 11:20

3

Solved

Following policy states to delete the current version of an object after 30 days and previous version after 30 days. Now suppose I upload an object on 1st April in a version enabled bucket and then...
Introversion asked 30/4, 2020 at 6:30

2

Currently, I'm trying to automate the bump versions for the applications as part of the PR Merge using the GitHub Actions. There is a custom script that would identify the current version of the ap...

© 2022 - 2025 — McMap. All rights reserved.