Skip to content

Commit f301e04

Browse files
author
Christian Kolb
committed
Dropped support for symfony below 7.4 and update docs
1 parent 797cfa4 commit f301e04

File tree

5 files changed

+23
-6
lines changed

5 files changed

+23
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 0.12.0
4+
5+
- Dropped support for PHP 8.3.
6+
- Added support for PHP 8.5.
7+
- Added support for Symfony ^8.0.
8+
- Dropped support for Symfony 7.3 and below. Only the 7.4 LTS version is still supported.
9+
310
## 0.11.1
411

512
- Updated `digital-craftsman/self-aware-normalizers` to use the first stable version.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ This Symfony bundle includes Symfony normalizers for automatic normalization and
2222

2323
As it's a central part of an application, it's tested thoroughly (including mutation testing). Currently, more than 80% of the lines of code in this repository are tests.
2424

25-
[![Latest Stable Version](https://img.shields.io/badge/stable-0.11.1-blue)](https://packagist.org/packages/digital-craftsman/date-time-precision)
26-
[![PHP Version Require](https://img.shields.io/badge/php-8.3|8.4-5b5d95)](https://packagist.org/packages/digital-craftsman/date-time-precision)
25+
[![Latest Stable Version](https://img.shields.io/badge/stable-0.12.0-blue)](https://packagist.org/packages/digital-craftsman/date-time-precision)
26+
[![PHP Version Require](https://img.shields.io/badge/php-8.4|8.5-5b5d95)](https://packagist.org/packages/digital-craftsman/date-time-precision)
2727
[![codecov](https://codecov.io/gh/digital-craftsman-de/date-time-precision/branch/main/graph/badge.svg?token=vZ0IvKPj2f)](https://codecov.io/gh/digital-craftsman-de/date-time-precision)
2828
![Packagist Downloads](https://img.shields.io/packagist/dt/digital-craftsman/date-time-precision)
2929
![Packagist License](https://img.shields.io/packagist/l/digital-craftsman/date-time-precision)
@@ -36,7 +36,7 @@ Install package through composer:
3636
composer require digital-craftsman/date-time-precision
3737
```
3838

39-
> ⚠️ This bundle can be used (and is being used) in production, but hasn't reached version 1.0 yet. Therefore, there will be breaking changes between minor versions. I'd recommend that you require the bundle only with the current minor version like `composer require digital-craftsman/date-time-precision:0.11.*`. Breaking changes are described in the releases and [the changelog](./CHANGELOG.md). Updates are described in the [upgrade guide](./UPGRADE.md).
39+
> ⚠️ This bundle can be used (and is being used) in production, but hasn't reached version 1.0 yet. Therefore, there will be breaking changes between minor versions. I'd recommend that you require the bundle only with the current minor version like `composer require digital-craftsman/date-time-precision:0.12.*`. Breaking changes are described in the releases and [the changelog](./CHANGELOG.md). Updates are described in the [upgrade guide](./UPGRADE.md).
4040
4141
## When would I need that?
4242

UPGRADE.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Upgrade guide
22

3+
## From 0.11.* to 0.12.0
4+
5+
### Dropped support for PHP 8.3
6+
7+
Update to at least PHP 8.4.
8+
9+
### Dropped support for Symfony 7.3 and lower
10+
11+
Update to at least the LTS version 7.4.
12+
313
## From 0.10.* to 0.11.0
414

515
### Removed deprecated `isDate*` methods from `Moment`

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"php": "8.4.*|8.5.*",
88
"digital-craftsman/self-aware-normalizers": "dev-php-update as 1.2.0",
99
"doctrine/dbal": "^3.4.0",
10-
"symfony/framework-bundle": "^7.0|^8.0",
11-
"symfony/serializer": "^7.0|^8.0"
10+
"symfony/framework-bundle": "^7.4|^8.0",
11+
"symfony/serializer": "^7.4|^8.0"
1212
},
1313
"require-dev": {
1414
"friendsofphp/php-cs-fixer": "^3.68.5",

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)