mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:36:13 +01:00
V1.0.0: First public release (#322)
This commit is contained in:
parent
27c535b7d2
commit
d8d55e05a6
5 changed files with 17 additions and 9 deletions
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -5,6 +5,18 @@ This project adheres to [Semantic Versioning](https://semver.org/).
|
|||
|
||||
## x.y.z
|
||||
|
||||
### Added
|
||||
|
||||
### Changed
|
||||
|
||||
### Deprecated
|
||||
|
||||
### Removed
|
||||
|
||||
### Fixed
|
||||
|
||||
## 1.0.0
|
||||
|
||||
### Added
|
||||
- Also run the CI build once a week (#160)
|
||||
- Run the functional tests via GitHub Actions (#55)
|
||||
|
@ -35,8 +47,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
|
|||
- Upgrade PHPUnit to 7.5.14
|
||||
- Change from GPL V3+ to GPL V2+
|
||||
- Streamline `ext_emconf.php`
|
||||
|
||||
### Deprecated
|
||||
- Complete rewrite. Usable with TYPO3 7.6 and 8.7.
|
||||
|
||||
### Removed
|
||||
- Drop the Travis CI builds (#56)
|
||||
|
@ -65,6 +76,3 @@ This project adheres to [Semantic Versioning](https://semver.org/).
|
|||
- Drop an obsolete "replace" entry from `composer.json`
|
||||
- Explicitly require MySQL on Travis CI
|
||||
- Add `.php_cs.cache` to the `.gitignore`
|
||||
|
||||
## 2.0.0
|
||||
- Complete rewrite. Usable with TYPO3 7.6 and 8.7.
|
||||
|
|
|
@ -21,7 +21,7 @@ EXT:tea
|
|||
tea, ci, continousintegration, gitlab, githubactions, actions, tests, functional, unit
|
||||
|
||||
:Copyright:
|
||||
2020 by TYPO3 Association
|
||||
2021 by TYPO3 Association
|
||||
|
||||
:Authors:
|
||||
* Oliver Klee
|
||||
|
|
|
@ -13,7 +13,7 @@ release = latest
|
|||
# .................................................................................
|
||||
# ... (recommended) displayed in footer
|
||||
# .................................................................................
|
||||
copyright = 2020 by TYPO3 Association
|
||||
copyright = 2021 by TYPO3 Association
|
||||
|
||||
[html_theme_options]
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
},
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-main": "2.0.x-dev"
|
||||
"dev-main": "1.0.x-dev"
|
||||
},
|
||||
"typo3/cms": {
|
||||
"app-dir": ".Build",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
$EM_CONF[$_EXTKEY] = [
|
||||
'title' => 'Tea example',
|
||||
'description' => 'Example extension for unit testing and best practices',
|
||||
'version' => '2.0.x-dev',
|
||||
'version' => '1.0.0',
|
||||
'category' => 'example',
|
||||
'constraints' => [
|
||||
'depends' => [
|
||||
|
|
Loading…
Reference in a new issue