Skip to content

Commit 5fe3796

Browse files
committed
Merge branch 'release/0.4.1'
2 parents d4f5bd5 + 09d3d71 commit 5fe3796

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

.github/workflows/php.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: PHP Composer
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: [ "main", "develop" ]
66
pull_request:
7-
branches: [ "main" ]
7+
branches: [ "main", "develop" ]
88

99
permissions:
1010
contents: read

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [0.4.1] - 2022-12-17
9+
10+
### Changed
11+
12+
* Changed the required PHP version
13+
14+
## [0.4.0] - 2022-12-17
15+
16+
### Changed
17+
18+
* Renamed the package in Packagist from `php-weather/common` to `php-weather/core`(#1)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Common interfaces, data and utility classes for PHP Weather
44

55
[![Packagist Version](https://img.shields.io/packagist/v/php-weather/core)](https://packagist.org/packages/php-weather/core)
6-
[![GitHub commits since tagged version](https://img.shields.io/github/commits-since/php-weather/common/0.4.0)](https://github.com/php-weather/common/commits/main)
6+
[![GitHub commits since tagged version](https://img.shields.io/github/commits-since/php-weather/common/0.4.1)](https://github.com/php-weather/common/commits/main)
77
[![GitHub last commit](https://img.shields.io/github/last-commit/php-weather/common)](https://github.com/php-weather/common/commits/main)
88
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/php-weather/common/php.yml?branch=main)](https://github.com/php-weather/common/actions)
99
[![License](https://img.shields.io/github/license/php-weather/common)](https://github.com/php-weather/common/blob/main/LICENSE)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
}
1414
],
1515
"require": {
16-
"php": "8.0.*|8.1.*",
16+
"php": "^8",
1717
"ext-json": "*"
1818
},
1919
"require-dev": {

0 commit comments

Comments
 (0)