npm
is causing me grief and I have no idea why. Trying to publish a new version of my package.
npm view {{package}} versions
[ '0.3.0',
'0.3.1',
'0.4.0',
'0.4.2',
'0.5.0',
'0.6.0',
'0.6.1',
'0.7.0',
'0.7.1',
'0.8.0',
'0.8.1',
'0.8.2',
'0.8.3',
'0.8.4',
'0.8.5' ]
When I run npm publish
I get this:
400 Bad Request - PUT https://registry.npmjs.org/{{package}} - Cannot publish over previously published version "1.0.0".
This is my current package.json:
...
"version": "1.0.0",
...
What gives?
EDIT:
Further, even when I try to patch the version and publish a 1.0.1 or a 1.0.2 I get the same message....good grief...