hug icon indicating copy to clipboard operation
hug copied to clipboard

Where are the tags for versions 2.3.1 and 2.3.2?

Open alexsavio opened this issue 8 years ago • 1 comments

alexsavio avatar Nov 30 '17 09:11 alexsavio

Both tags seems to be missing from https://github.com/hugapi/hug/tags and there are also no releases. @timothycrosley with the documentation below I suggest to close this issue.

The code for the releases can be reconstructed from the history:

These are the first commits to change the version number:

  • 2.3.2 https://github.com/hugapi/hug/commit/2acac2c638315fc14cd11c52419040141d5aa48d
  • 2.3.1 https://github.com/hugapi/hug/commit/896b437c9db5ac762ecf18953fea1248f6df3d8d

Diffing the git revisions to the files available from pypi, shows that the code is the same. There is one commit to update the release date 9067f508798a5117f17c540f5fa8e078ae74f903 and there are changes to egg info probably done later in the release process.

git checkout 2acac2c638315fc14cd11c52419040141d5aa48d
cd ..
sha256sum hug-2.3.2.tar.gz 
227e5a3b9afd4ff7dc81225914eed10dd29d36511eced3ef4114299e2aa77555  hug-2.3.2.tar.gz
tar -tvmlzf hug-2.3.2.tar.gz
env LANG=C diff -U0 -r hug-git/ hug-2.3.2
Only in hug-git/: .bumpversion.cfg
Only in hug-git/: .coveragerc
Only in hug-git/: .editorconfig
Only in hug-git/: .env
Only in hug-git/: .git
Only in hug-git/: .gitignore
Only in hug-git/: .travis.yml
diff -U0 -r hug-git/CHANGELOG.md hug-2.3.2/CHANGELOG.md
--- hug-git/CHANGELOG.md        2019-04-24 08:46:21.849960018 +0200
+++ hug-2.3.2/CHANGELOG.md      2019-04-24 08:46:52.842719618 +0200
@@ -16 +16 @@
-### 2.3.2 - In Development
+### 2.3.2 - Sep 28, 2017
Only in hug-2.3.2: PKG-INFO
Only in hug-git/: appveyor.yml
Only in hug-git/: artwork
Only in hug-git/: benchmarks
Only in hug-git/: docker
Only in hug-git/: documentation
Only in hug-git/: examples
Only in hug-git/hug: __pycache__
Only in hug-2.3.2: hug.egg-info
Only in hug-git/: requirements
Only in hug-git/: scripts
diff -U0 -r hug-git/setup.cfg hug-2.3.2/setup.cfg
--- hug-git/setup.cfg   2019-04-24 08:46:21.853960116 +0200
+++ hug-2.3.2/setup.cfg 2019-04-24 08:46:52.846719716 +0200
@@ -6,0 +7,5 @@
+
+[egg_info]
+tag_build = 
+tag_date = 0
+
Only in hug-git/: tests
Only in hug-git/: tox.ini
git checkout 896b437c9db5ac762ecf18953fea1248f6df3d8d
cd ..
tar -xvmlzf hug-2.3.1.tar.gz 
sha256sum hug-2.3.1.tar.gz 
a104217b36828e139073f0cd0931f7852b2fe6af6763a7b5e7644ea05fa7165f  hug-2.3.1.tar.gz
env LANG=C diff -U0 -r hug-git/ hug-2.3.1
Only in hug-git/: .bumpversion.cfg
Only in hug-git/: .coveragerc
Only in hug-git/: .editorconfig
Only in hug-git/: .env
Only in hug-git/: .git
Only in hug-git/: .gitignore
Only in hug-git/: .travis.yml
Only in hug-2.3.1: PKG-INFO
Only in hug-git/: appveyor.yml
Only in hug-git/: artwork
Only in hug-git/: benchmarks
Only in hug-git/: docker
Only in hug-git/: documentation
Only in hug-git/: examples
Only in hug-git/hug: __pycache__
Only in hug-2.3.1: hug.egg-info
Only in hug-git/: requirements
Only in hug-git/: scripts
diff -U0 -r hug-git/setup.cfg hug-2.3.1/setup.cfg
--- hug-git/setup.cfg   2019-04-24 08:46:21.853960116 +0200
+++ hug-2.3.1/setup.cfg 2019-04-24 08:55:59.180137826 +0200
@@ -6,0 +7,5 @@
+
+[egg_info]
+tag_build = 
+tag_date = 0
+
Only in hug-git/: tests
Only in hug-git/: tox.ini

bernhardreiter avatar Apr 24 '19 06:04 bernhardreiter