You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@sentry.apache.org by "Sergio Peña (JIRA)" <ji...@apache.org> on 2017/07/26 21:35:00 UTC

[jira] [Updated] (SENTRY-1861) Create tag release-1.8.0

     [ https://issues.apache.org/jira/browse/SENTRY-1861?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sergio Peña updated SENTRY-1861:
--------------------------------
    Description: 
Need to create a tag on the branch-1.8 HEAD named: release-1.8.0

Steps to create the tag:

*Make sure you have the latest branch-1.8 changes*
{noformat}
git checkout branch-1.8 && git pull origin
{noformat}

*Create the tag*
{noformat}
git tag -a release-1.8.0 -m "Sentry 1.8.0 release"
{noformat}

*Make sure compiles/tests run fine and rat check is fine*
{noformat}
mvn clean install -DskipTests
mvn test (this is optional as SENTRY-1860 already run all the tests)
mvn verify -DskipTests (to do the rat check)
{noformat}

*Push the new tag to github*
{noformat}
git push origin release-1.8.0
{noformat}

If you made a mistake, then you can delete the branch and push it again
{noformat}
git tag -d release-1.8.0
git push origin :refs/tags/release-1.8.0
{noformat}


  was:
Need to create a tag on the branch-1.8 HEAD named: release-1.8.0

Steps to create the tag:

*Make sure you have the latest branch-1.8 changes*
{noformat}
git checkout branch-1.8 && git pull origin
{noformat}

*Create the tag*
{noformat}
git tag -a release-1.8.0 -m "Sentry 1.8.0 release"
{noformat}

*Make sure compiles/tests run fine and rat check is fine*
{noformat}
mvn clean install -DskipTests
mvn test (this is optional
mvn verify -DskipTests (to do the rat check)
{noformat}

*Push the new tag to github*
{noformat}
git push origin release-1.8.0
{noformat}

If you made a mistake, then you can delete the branch and push it again
{noformat}
git tag -d release-1.8.0
git push origin :refs/tags/release-1.8.0
{noformat}



> Create tag release-1.8.0
> ------------------------
>
>                 Key: SENTRY-1861
>                 URL: https://issues.apache.org/jira/browse/SENTRY-1861
>             Project: Sentry
>          Issue Type: Sub-task
>          Components: Sentry
>    Affects Versions: 1.8.0
>            Reporter: Sergio Peña
>
> Need to create a tag on the branch-1.8 HEAD named: release-1.8.0
> Steps to create the tag:
> *Make sure you have the latest branch-1.8 changes*
> {noformat}
> git checkout branch-1.8 && git pull origin
> {noformat}
> *Create the tag*
> {noformat}
> git tag -a release-1.8.0 -m "Sentry 1.8.0 release"
> {noformat}
> *Make sure compiles/tests run fine and rat check is fine*
> {noformat}
> mvn clean install -DskipTests
> mvn test (this is optional as SENTRY-1860 already run all the tests)
> mvn verify -DskipTests (to do the rat check)
> {noformat}
> *Push the new tag to github*
> {noformat}
> git push origin release-1.8.0
> {noformat}
> If you made a mistake, then you can delete the branch and push it again
> {noformat}
> git tag -d release-1.8.0
> git push origin :refs/tags/release-1.8.0
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)