2020-05-08 16:35:16 +02:00
# How to release SCM-Manager v2 core
2020-03-09 08:01:43 +01:00
2020-03-13 15:44:35 +01:00
To release a new version of SCM-Manager v2 you have to do the following steps (replace placeholders `<version>` accordingly, eg. with `2.1.0` ):
2020-03-09 08:01:43 +01:00
## Check out default branch
2020-03-13 15:44:35 +01:00
Make sure you have no changes you want to keep!
2020-03-09 08:01:43 +01:00
2020-03-13 15:44:35 +01:00
```
2020-06-04 19:06:16 +02:00
git fetch && git checkout -f origin/develop && git clean -fd && git checkout -B develop
2020-03-13 15:44:35 +01:00
```
2020-03-09 08:01:43 +01:00
## Modify Changelog
Change "Unreleased" header in `CHANGELOG.md` to `<version> - <current date>`
2020-04-09 19:45:24 +02:00
## Create release branch
2020-03-09 08:01:43 +01:00
2020-03-13 15:44:35 +01:00
`git checkout -b release/<version>`
2020-03-09 08:01:43 +01:00
2020-03-13 15:44:35 +01:00
## Commit version changes
2020-03-09 08:01:43 +01:00
```
2020-03-13 15:44:35 +01:00
git add CHANGELOG.md
git commit -m "Adjust changelog for release <version>"
2020-03-09 08:01:43 +01:00
```
2020-03-13 15:44:35 +01:00
## Push release branch
2020-03-09 08:01:43 +01:00
2020-03-13 15:44:35 +01:00
`git push origin release/<version>`
2020-03-09 08:01:43 +01:00
2020-03-13 15:44:35 +01:00
## Wait for Jenkins build
2020-03-09 08:01:43 +01:00
2020-03-13 15:44:35 +01:00
Jenkins will
2020-03-09 08:01:43 +01:00
2020-03-13 15:44:35 +01:00
- update `pom.xml` and `package.json`
- merge with master branch
- build and deploy everything
- set the new development version for the develop branch
2020-04-09 19:45:24 +02:00
- delete the release branch
2020-03-09 08:01:43 +01:00
## Make a party
# How to release SCM-Manager v2 plugins
To release a new version of a Plugin for SCM-Manager v2 you have to do the following steps (replace placeholder `<version>` accordingly, eg. with `2.1.0` ):
2020-04-09 19:45:24 +02:00
## Check out default branch
2020-03-13 15:30:52 +01:00
2020-03-13 15:44:35 +01:00
Make sure you have no changes you want to keep!
2020-03-13 15:30:52 +01:00
```
2020-06-04 19:06:16 +02:00
git fetch && git checkout -f origin/develop && git clean -fd && git checkout -B develop
2020-03-13 15:30:52 +01:00
```
2020-04-14 15:37:18 +02:00
## Update SCM parent if necessary
2020-03-09 08:01:43 +01:00
2020-04-14 15:37:18 +02:00
If you need to update the parent of the plugin to a new release of SCM-Manager, change it now:
2020-03-09 08:01:43 +01:00
2020-04-14 15:37:18 +02:00
- `pom.xml` : `parent.version`
- `package.json` : `dependencies.ui-plugins`
2020-03-09 08:01:43 +01:00
2020-04-14 15:37:18 +02:00
```
2020-06-04 19:06:16 +02:00
rm -rf node_modules yarn.lock && mvn clean install \
&& git add yarn.lock pom.xml package.json \
&& git commit -m "Update to new version of SCM-Manager" \
2020-06-04 20:10:19 +02:00
&& git push origin develop
2020-04-14 15:37:18 +02:00
```
2020-03-09 08:01:43 +01:00
2020-05-08 16:40:35 +02:00
## Plugin dependencies
2020-05-08 16:46:38 +02:00
Check if all plugin dependencies are proper versions and not SNAPSHOT!
2020-05-08 16:40:35 +02:00
2020-04-14 15:37:18 +02:00
Wait for Jenkins to be green.
2020-03-09 08:01:43 +01:00
2020-04-14 15:37:18 +02:00
## Modify Changelog
Change "Unreleased" header in `CHANGELOG.md` to `<version> - <current date>`
2020-06-04 20:10:19 +02:00
## Create, commit and push release branch
2020-03-09 08:01:43 +01:00
```
2020-06-04 20:10:19 +02:00
export VERSION=<version> \
&& git checkout -b release/$VERSION \
&& echo git commit -am "Prepare release of $VERSION" \
&& echo git push origin release/$VERSION
2020-03-09 08:01:43 +01:00
```
2020-04-09 19:45:24 +02:00
## Wait for Jenkins build
2020-03-09 08:01:43 +01:00
2020-04-09 19:45:24 +02:00
Jenkins will
2020-03-09 08:01:43 +01:00
2020-04-09 19:45:24 +02:00
- update versions in pom.xml and package.json
- merge with master branch
- build and deploy everything
- set the new development version for the develop branch
- delete the release branch
2020-03-09 08:01:43 +01:00
2020-03-31 18:29:36 +02:00
## Attention: Creating new plugins
If you are creating a new plugin which doesn't exist in the SCM-Manager Plugin-Center yet, your plugin will not be shown after the release. First you have to create a `index.md` in the Plugin-Center Repository.
Example: https://github.com/scm-manager/plugin-center/blob/master/src/plugins/scm-teamscale-plugin/index.md