Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
5.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sadick254 committed Jul 8, 2021
1 parent dea9ac5 commit 208a033
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "git-utils",
"description": "A package for using Git repositories",
"version": "5.7.2",
"version": "5.7.3",
"license": "MIT",
"author": {
"name": "Kevin Sawicki",
Expand Down

2 comments on commit 208a033

@gakowalski
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How is this version different from the previous one?

@DeeDeeG
Copy link
Contributor

@DeeDeeG DeeDeeG commented on 208a033 Jul 6, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It appears to be the same. Just the version number in package.json is increased by one.

This version was probably published by mistake, such as by accidentally running npm publish twice instead of once.

you can confirm by fetching the tarballs from the npm package registry (using npm pack), extracting the tarballs, and then doing a recursive diff, like this shell script will do for you:

#!/usr/bin/env bash
mkdir examine_tarballs && cd examine_tarballs
npm pack [email protected]
npm pack [email protected]
tar xf git-utils-5.7.3.tgz && mv package git-utils_5.7.3
tar xf git-utils-5.7.2.tgz && mv package git-utils_5.7.2
diff -r git-utils_5.7.2 git-utils_5.7.3

From that, you ultimately get this output:

...
$ diff -r git-utils_5.7.2/package.json git-utils_5.7.3/package.json
4c4
<   "version": "5.7.2",
---
>   "version": "5.7.3",

Furthermore, the difference from 5.7.1 is really only a slightly newer minimum nan package dependency, which should make no difference to users of this package, since the dependency range as specified was already inclusive of all possible newer nan 2.x releases above 2.14.0....

Please sign in to comment.