Questions tagged [versioning]

Software versioning is the process of assigning either unique version names or unique version numbers to unique states of computer software. Within a given version number category (major, minor), these numbers are generally assigned in increasing order and correspond to new developments in the software.

Software versioning is the process of assigning either unique version names or unique version numbers to unique states of computer software. Within a given version number category (major, minor), these numbers are generally assigned in increasing order and correspond to new developments in the software.

The following are some popular versioning software used:

  1. Git
  2. Subversion (SVN)
  3. Microsoft TFS
3122 questions
1
vote
0 answers

Set npm version when using maven versions:set goal

I am using Maven to build a multi-module Java application and deriving goals to also compile & test an Angular one. So far I could map the following goals: clean, generate-sources, compile, test. Any ideas how to tell Maven to also set the…
Jerome
  • 1,225
  • 2
  • 12
  • 23
1
vote
0 answers

How to see comments in history view of Visual SourceSafe?

While viewing the history of a file in Visual SourceSafe, I see the following columns: Version User Date Action I'm more interested in the comments, I filled in while checking out and in. I know I can get this information, using the history report…
Dominique
  • 16,450
  • 15
  • 56
  • 112
1
vote
1 answer

Can Microsoft Visual SourceSafe and GIT work next to each other?

In my company, we are working with Microsoft Visual SourceSafe. As this is a very old system, I'd like to stop working with this and go for GIT. On the internet, there should be plenty of explanations on how to convert the whole SourceSafe…
Dominique
  • 16,450
  • 15
  • 56
  • 112
1
vote
2 answers

Ionic React Project Versioning

I have an Ionic React Project created with Ionic Cli ionic start using the blank template. How can I set the project's version that I see in the package.json file? Is that sufficient? Is there any place that I should write the version as well? E.g.:…
Vivere
  • 1,919
  • 4
  • 16
  • 35
1
vote
1 answer

AWS S3 API/CLI - hide older versions of a file

I have enabled versioning on my S3 bucket to not lose/overwrite any data. However now when I use the CLI it returns duplicates files: aws s3 ls s3://my-bucket # returns: 2021-01-25 10:54:02 49062 my_file.csv 2021-01-26 11:40:13 49062…
cedric
  • 351
  • 4
  • 13
1
vote
0 answers

Does Git do versioning per package or per whole project in SSIS?

I have a SSIS project containing around 50 packages. I want to do versioning with Git. I'm wondering if Git will do the job per package or per project? Thanks
1
vote
1 answer

WinForms Setup project installation executes the previous version

After updating WinForms desktop application, Setup project uninstall successfully deletes installation path by C:\Program Files (x86)\myProject, but new, in advance Clean, Rebuild and Build installation executes the previous version of the code,…
user11137294
1
vote
1 answer

How can I search in the comments?

In my company (as in most) source code modifications are described in so-called "tickets", which have a unique ID for reference purposes. When somebody checks in a file, that ID is entered in the "comment" field. Recently somebody has checked in a…
Dominique
  • 16,450
  • 15
  • 56
  • 112
1
vote
0 answers

Keeping jar version numbers in sync between JitPack and other repositories

I maintain a few Java library projects on GitLab, which I currently build with a GitLab CI workflow and deploy to a GitLab Maven repository. Now I would like to make them available via JitPack while keeping the GitLab Maven repo for a…
user149408
  • 5,385
  • 4
  • 33
  • 69
1
vote
3 answers

How can I get my GIT tags in the order that they were created?

I am facing an issue where I am using git (version 2.27.0.windows.1) and want to sort so that I am able to use the most recent one. Right now got the following list of tags: abc_a_r0.1.1 abc_b_r0.1.2 abc_c_r1.2.3 abc_d_r1.2.4 abc_r5.4.9 …
Samuel
  • 19
  • 2
1
vote
2 answers

How do I make changes to a model in Django?

How does Django handle changes to my Model? Or, what help does it offer me to do this? I am thinking of a situation where I have already have published data to my DB which I don't want to lose, but I need to make changes to my data model - for…
bacar
  • 9,761
  • 11
  • 55
  • 75
1
vote
1 answer

Synology - How to delete versioning DB

I cannot find how to delete the versioning database. I disabled versioning on all my folders: In the drive admin console I still get 2.5 TB used for versioning: but there is no data in the version explorer: Any idea ?
jul
  • 36,404
  • 64
  • 191
  • 318
1
vote
1 answer

make action if up to date

I have a makefile used by GNU Make 3.81 running on windows and with each build I pass to the compiler a define giving a version number. The version number is obtained from a file and incremented at the start of the makefile using a perl script with…
stegzzz
  • 407
  • 4
  • 9
1
vote
0 answers

semantic-release fails to increase version

If there is any changes via merge from branch to master, we need semantic-release to analyse the commit message and increase the release version. We are using Bitbucket scm. The process of how we merge from branch to master, developer create a pull…
bittersour
  • 937
  • 2
  • 11
  • 32
1
vote
0 answers

C# MVC Auto Increment Version on Publish

I am trying to figure out how to auto increment the version number (1.0.**) every time I publish. I have found a lot of examples doing this on build, but not on publish. Please note: I am not looking to do this by date. I would like this to…
ehelmick93
  • 27
  • 5
1 2 3
99
100