Skip to content

Commit

Permalink
Merge tag 'v0.21.0' into merge
Browse files Browse the repository at this point in the history
Release 0.21.0

Added
- Add support for OpenBSD 7.4 ([openbsd-builder#15](cross-platform-actions/openbsd-builder#15))
  • Loading branch information
korli committed Mar 15, 2024
2 parents d3dbd1f + 0e13474 commit b3366ea
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ jobs:
fail-fast: false
matrix:
version:
- '7.4'
- '7.3'
- '7.2'
- '7.1'
Expand Down
9 changes: 7 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.21.0] - 2023-10-26
### Added
- Add support for OpenBSD 7.4 ([openbsd-builder#15](https://github.com/cross-platform-actions/openbsd-builder/issues/15))

## [0.20.0] - 2023-10-24
### Added
- Add support for disabling file syncing ([#65](https://github.com/cross-platform-actions/action/issues/65)).
Expand Down Expand Up @@ -140,9 +144,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial release

[Unreleased]: https://github.com/cross-platform-actions/action/compare/v0.20.0...HEAD
[Unreleased]: https://github.com/cross-platform-actions/action/compare/v0.21.0...HEAD

[0.19.1]: https://github.com/cross-platform-actions/action/compare/v0.19.1...v0.20.0
[0.21.0]: https://github.com/cross-platform-actions/action/compare/v0.20.0...v0.21.0
[0.20.0]: https://github.com/cross-platform-actions/action/compare/v0.19.1...v0.20.0
[0.19.1]: https://github.com/cross-platform-actions/action/compare/v0.19.0...v0.19.1
[0.19.0]: https://github.com/cross-platform-actions/action/compare/v0.18.0...v0.19.0
[0.18.0]: https://github.com/cross-platform-actions/action/compare/v0.17.0...v0.18.0
Expand Down
4 changes: 4 additions & 0 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ jobs:
### Full Example
Here's a sample workflow file which will set up a matrix resulting in four jobs.
One which will run on FreeBSD 13.2, one which runs OpenBSD 7.3, one which runs
NetBSD 9.3 and one which runs OpenBSD 7.3 on ARM64.
One which will run on FreeBSD 13.2, one which runs OpenBSD 7.4, one which runs
NetBSD 9.3 and one which runs OpenBSD 7.4 on ARM64.
```yaml
name: CI
Expand All @@ -70,12 +70,12 @@ jobs:

- name: openbsd
architecture: x86-64
version: '7.3'
version: '7.4'
host: macos-12

- name: openbsd
architecture: arm64
version: '7.3'
version: '7.4'
host: ubuntu-latest

- name: netbsd
Expand Down Expand Up @@ -171,6 +171,7 @@ operating system will list which versions are supported.

| Version | x86-64 | arm64 |
| ------- | ------ | ------ |
| 7.4 | ✅ | ✅ |
| 7.3 | ✅ | ✅ |
| 7.2 | ✅ | ✅ |
| 7.1 | ✅ | ✅ |
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const version = {
operating_system: {
freebsd: 'v0.5.0',
netbsd: 'v0.2.0',
openbsd: 'v0.6.0',
openbsd: 'v0.7.0',
haiku: 'v0.0.6'
},

Expand Down

0 comments on commit b3366ea

Please sign in to comment.