mercedes-benz / sechub

SecHub provides a central API to test software with different security tools.
https://mercedes-benz.github.io/sechub/
MIT License
259 stars 61 forks source link

Change initial server and client tags #29

Closed de-jcup closed 4 years ago

de-jcup commented 4 years ago

We tagged initial OSS server with version 1.0.4 and client with 1.5.0, because this were the versions used inside the former internal project.

But having multiple changes in API in next future (downward compatible but still changes) and still wanting to support only API v1.0 at the moment and wanting to show that sechub is still in development we decided to change back the initial versions:

rename v1.0.4-server -> v0.10.4-server rename v1.5.0-client -> v0.15.0-client

SecHub is ready to use with 3 products only currently. It works, but there is still much to do! So this will represent more the current situation

So inside this issue, we will remove the old tags and replace them with new ones

de-jcup commented 4 years ago

This was done by following commands

git tag v0.10.4-server v1.0.4-server
git tag -d v1.0.4-server
git tag v0.15.0-client v1.5.0-client
git tag -d v1.5.0-client
git push origin :refs/tags/v1.0.4-server
git push origin :refs/tags/v1.5.0-client
git push --tags