minor #22751 [HttpKernel] Fix the kernel version of 4.0 (Th3Mouk)

This PR was merged into the 3.3-dev branch.

Discussion
----------

[HttpKernel] Fix the kernel version of 4.0

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | yes
| New feature?  | no <!-- don't forget updating src/**/CHANGELOG.md files -->
| BC breaks?    | no
| Deprecations? | no <!-- don't forget updating UPGRADE-*.md files -->
| Tests pass?   | yes
| License       | MIT

<!--
- Bug fixes must be submitted against the lowest branch where they apply
  (lowest branches are regularly merged to upper ones so they get the fixes too).
- Features and deprecations must be submitted against the master branch.
- Please fill in this template according to the PR you're about to submit.
- Replace this comment by a description of what your PR is solving.
-->

This solve the version declaration in the kernel for sf4 development.

Commits
-------

aa223f5 Fix the kernel version of 4.0
This commit is contained in:
Nicolas Grekas 2017-05-18 14:10:56 +02:00
commit 3eb2fc13a6

View File

@ -63,7 +63,7 @@ abstract class Kernel implements KernelInterface, TerminableInterface
const VERSION = '4.0.0-DEV';
const VERSION_ID = 40000;
const MAJOR_VERSION = 0;
const MAJOR_VERSION = 4;
const MINOR_VERSION = 0;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = 'DEV';