vue.draggable.next icon indicating copy to clipboard operation
vue.draggable.next copied to clipboard

Latest version does not match package.json version

Open rbatllet opened this issue 2 years ago • 3 comments

There is a problem about the numbering of the latest version. In package.json it indicates that it is 4.1.0 but in the announced version it is 4.0.1.

Can anyone fix this inconsistency? Screenshot 2022-04-27 at 18 51 49 Screenshot 2022-04-27 at 18 52 03

rbatllet avatar Apr 27 '22 16:04 rbatllet

As we can see in npm, the version of @next is 4.1.0 of this repository. Therefore package.json is correct. To install a specific version, you need to specify it during installation.

npm i -S [email protected]

memclutter avatar Apr 29 '22 07:04 memclutter

@memclutter You have misunderstood. The latest version (v4.0.1) is lower than the version indicated in the package.json.

That is the inconsistency. They got confused and instead of writing 4.0.1 they typed 4.1.0 in the package.json.

rbatllet avatar Apr 29 '22 07:04 rbatllet

The issue is that 4.1.0 has not been tagged as a release on GitHub.

At https://www.npmjs.com/package/vuedraggable/v/next you can see that 4.0.1, 4.0.2 and 4.0.3 were already released, so that you can assume that the 4.1.0 release is the latest one. 4.0.2 and 4.0.3 have also not been tagged on GitHub.

It would be nice if the releases available on npm would also be tagged here in order to be able to easily download a specific release from GitHub, but in any case you can look at the blame page from package.json and look at the version change to see which commit equates to what is on npm.

https://github.com/SortableJS/vue.draggable.next/commit/fae4944e7227f8f0ca06e19be01b14b584cfa973

danielfaust avatar May 23 '22 19:05 danielfaust