Prepare 2.2.1-SNAPSHOT dev cycle
This commit is contained in:
parent
8c16f669b8
commit
b161b389b4
2 changed files with 3 additions and 3 deletions
|
@ -173,14 +173,14 @@ To upgrade:
|
||||||
|
|
||||||
### Release
|
### Release
|
||||||
* Set a date in the `CHANGELOG.md` file
|
* Set a date in the `CHANGELOG.md` file
|
||||||
* Remove `SNAPSHOT` from the version in `Version.php`
|
* Remove `SNAPSHOT` from the version in `Constants.php`
|
||||||
* Build the docker image from the project home with `docker build -t varakh/ts3web:latest -t varakh/ts3web:<releaseTag> -f docker/Dockerfile .` and publish it
|
* Build the docker image from the project home with `docker build -t varakh/ts3web:latest -t varakh/ts3web:<releaseTag> -f docker/Dockerfile .` and publish it
|
||||||
* Tag the release git commit and create a new release in the VCS web interface
|
* Tag the release git commit and create a new release in the VCS web interface
|
||||||
|
|
||||||
### Prepare next development cycle
|
### Prepare next development cycle
|
||||||
|
|
||||||
1. Branch from `master` to `release/prepare-newVersionNumber`
|
1. Branch from `master` to `release/prepare-newVersionNumber`
|
||||||
2. Add `-SNAPSHOT` to the version in `Version.php` and increase it
|
2. Add `-SNAPSHOT` to the version in `Constants.php` and increase it
|
||||||
3. Merge this branch to `patch` or/and `dev` respectively
|
3. Merge this branch to `patch` or/and `dev` respectively
|
||||||
4. Don't forget to clean up all created branches
|
4. Don't forget to clean up all created branches
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@ class Constants
|
||||||
/**
|
/**
|
||||||
* Version tag
|
* Version tag
|
||||||
*/
|
*/
|
||||||
const VERSION = '2.2.0';
|
const VERSION = '2.2.1-SNAPSHOT';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return constant by it's class name
|
* Return constant by it's class name
|
||||||
|
|
Reference in a new issue