Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TASK] Set version to 8.0.0 #1117

Merged
merged 1 commit into from Feb 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/Analyze.yml
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Test
run: |
if [ -n "${{ secrets.SONAR_TOKEN }}" ]; then
export COMPOSER_ROOT_VERSION=7.1.6
export COMPOSER_ROOT_VERSION=8.0.0
composer update
vendor/bin/phpunit --whitelist Classes --coverage-clover var/clover.xml --log-junit var/junit.xml
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Test.yml
Expand Up @@ -128,7 +128,7 @@ jobs:

- name: Install
env:
COMPOSER_ROOT_VERSION: 7.1.6
COMPOSER_ROOT_VERSION: 8.0.0
run: |
composer update --with "typo3/cms-core:${{ matrix.typo3 }}" --prefer-${{ matrix.dependency-version }} --prefer-dist --no-interaction

Expand Down
2 changes: 1 addition & 1 deletion Classes/Console/Mvc/Cli/Symfony/Application.php
Expand Up @@ -41,7 +41,7 @@
*/
class Application extends BaseApplication
{
const TYPO3_CONSOLE_VERSION = '7.1.6';
const TYPO3_CONSOLE_VERSION = '8.0.0';
const COMMAND_NAME = 'typo3';

/**
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Settings.cfg
Expand Up @@ -4,8 +4,8 @@
[general]

project = TYPO3 Console
version = 7.1.6
release = 7.1.6
version = 8.0.0
release = 8.0.0
copyright = since 2014 by Helmut Hummel & Contributors

[html_theme_options]
Expand Down
2 changes: 1 addition & 1 deletion Resources/Private/ExtensionArtifacts/ext_emconf.php
Expand Up @@ -9,7 +9,7 @@
'author' => 'Helmut Hummel',
'author_email' => 'info@helhum.io',
'author_company' => 'helhum.io',
'version' => '7.1.6',
'version' => '8.0.0',
'constraints' => [
'depends' => [
'php' => '7.4.1-8.99.99',
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
@@ -1,7 +1,7 @@
sonar.organization=helhum-github
sonar.projectKey=typo3-console
sonar.projectName=TYPO3 Console
sonar.projectVersion=7.1.6
sonar.projectVersion=8.0.0
sonar.sources=.
sonar.exclusions=public/**, var/**, vendor/**, .github/**, Tests/**, Resources/**, Documentation/**, Configuration/**

Expand Down