From 2e6aab05836736144b8f7b968b97c3e36ff99274 Mon Sep 17 00:00:00 2001 From: AlexNDRmac Date: Wed, 28 Sep 2022 19:20:51 +0300 Subject: [PATCH 1/4] Update changelog, enable release action --- .github/workflows/main.yml | 4 ++++ CHANGELOG.md | 12 ++++++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a226397..247d40f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,6 +6,10 @@ on: - '**.md' - '**.txt' pull_request: + branches: + - master + tags: + - '*' jobs: build: diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fb0e16..81f4c56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,13 +4,21 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [Unreleased](https://github.com/NoiseByNorthwest/php-spx/compare/0.4.0...HEAD) +## [Unreleased](https://github.com/NoiseByNorthwest/php-spx/compare/0.4.13...HEAD) + + +## [v0.4.13](https://github.com/NoiseByNorthwest/php-spx/compare/0.4.12...0.4.13) ### Added - Github Actions workflow ([#180](https://github.com/NoiseByNorthwest/php-spx/issues/180)) +- Added support for php 8.2.0 RC2 [#198](https://github.com/NoiseByNorthwest/php-spx/issues/198) +- Added PHP 8.2 support [#196](https://github.com/NoiseByNorthwest/php-spx/issues/196) + +### Changed +- Documentation: Clarified what Inc. and Exc. mean in the table [#193](https://github.com/NoiseByNorthwest/php-spx/issues/193) ### Removed -- Travis CI +- Travis CI [#195](https://github.com/NoiseByNorthwest/php-spx/issues/195) ## [v0.4.0](https://github.com/NoiseByNorthwest/php-spx/compare/0.3.0...0.4.0) From 9719fd93e8e5d0fe0eea41e3f7cb6d05ae43c644 Mon Sep 17 00:00:00 2001 From: AlexNDRmac Date: Wed, 28 Sep 2022 19:23:39 +0300 Subject: [PATCH 2/4] Fix workflow syntax --- .github/workflows/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 247d40f..95fb3de 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,14 +2,16 @@ name: CI on: push: + branches: + - '**' + tags: + - '*' paths-ignore: - '**.md' - '**.txt' pull_request: branches: - master - tags: - - '*' jobs: build: From ab15988787c814a5ba46a476dd58a47b6e701ce4 Mon Sep 17 00:00:00 2001 From: AlexNDRmac Date: Wed, 28 Sep 2022 20:07:29 +0300 Subject: [PATCH 3/4] Bump version --- src/php_spx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/php_spx.h b/src/php_spx.h index d9eca58..99f52f9 100644 --- a/src/php_spx.h +++ b/src/php_spx.h @@ -40,6 +40,6 @@ #endif #define PHP_SPX_EXTNAME "SPX" -#define PHP_SPX_VERSION "0.4.12" +#define PHP_SPX_VERSION "0.4.13" extern zend_module_entry spx_module_entry; From b715b77dca6e73c374e9c99677606ac1fa9267e3 Mon Sep 17 00:00:00 2001 From: AlexNDRmac Date: Wed, 28 Sep 2022 20:34:20 +0300 Subject: [PATCH 4/4] Fix build artifact path for release assets --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 95fb3de..5528bf7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -148,5 +148,5 @@ jobs: tag: ${{ steps.get-version.outputs.version }} bodyFile: "./release-notes.md" allowUpdates: true - artifacts: "./build-artifacts/*.zip" + artifacts: "./build-artifacts/*/*.zip" artifactContentType: application/octet-stream