Skip to content

Commit 29d6ec9

Browse files
Merge pull request #199 from AlexNDRmac/release-action-fix
Enable Release action
2 parents 8482877 + b715b77 commit 29d6ec9

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,16 @@ name: CI
22

33
on:
44
push:
5+
branches:
6+
- '**'
7+
tags:
8+
- '*'
59
paths-ignore:
610
- '**.md'
711
- '**.txt'
812
pull_request:
13+
branches:
14+
- master
915

1016
jobs:
1117
build:
@@ -142,5 +148,5 @@ jobs:
142148
tag: ${{ steps.get-version.outputs.version }}
143149
bodyFile: "./release-notes.md"
144150
allowUpdates: true
145-
artifacts: "./build-artifacts/*.zip"
151+
artifacts: "./build-artifacts/*/*.zip"
146152
artifactContentType: application/octet-stream

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,21 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
## [Unreleased](https://github.com/NoiseByNorthwest/php-spx/compare/0.4.0...HEAD)
7+
## [Unreleased](https://github.com/NoiseByNorthwest/php-spx/compare/0.4.13...HEAD)
8+
9+
10+
## [v0.4.13](https://github.com/NoiseByNorthwest/php-spx/compare/0.4.12...0.4.13)
811

912
### Added
1013
- Github Actions workflow ([#180](https://github.com/NoiseByNorthwest/php-spx/issues/180))
14+
- Added support for php 8.2.0 RC2 [#198](https://github.com/NoiseByNorthwest/php-spx/issues/198)
15+
- Added PHP 8.2 support [#196](https://github.com/NoiseByNorthwest/php-spx/issues/196)
16+
17+
### Changed
18+
- Documentation: Clarified what Inc. and Exc. mean in the table [#193](https://github.com/NoiseByNorthwest/php-spx/issues/193)
1119

1220
### Removed
13-
- Travis CI
21+
- Travis CI [#195](https://github.com/NoiseByNorthwest/php-spx/issues/195)
1422

1523

1624
## [v0.4.0](https://github.com/NoiseByNorthwest/php-spx/compare/0.3.0...0.4.0)

src/php_spx.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@
4040
#endif
4141

4242
#define PHP_SPX_EXTNAME "SPX"
43-
#define PHP_SPX_VERSION "0.4.12"
43+
#define PHP_SPX_VERSION "0.4.13"
4444

4545
extern zend_module_entry spx_module_entry;

0 commit comments

Comments
 (0)