Skip to content

Commit

Permalink
Fix #95: Add support for NetBSD 10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-carlborg committed Jan 21, 2025
1 parent a0672d7 commit a9eea90
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ jobs:
fail-fast: false
matrix:
version:
- '10.1'
- '10.0'
- '9.4'
- '9.3'
Expand Down
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
- Add support for NetBSD 10.1 ([#95](https://github.com/cross-platform-actions/action/issues/95))

## [0.26.0] - 2024-04-12
### Added
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

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

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ jobs:

- name: netbsd
architecture: x86-64
version: '10.0'
version: '10.1'

- name: netbsd
architecture: arm64
version: '10.0'
version: '10.1'

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -200,6 +200,7 @@ operating system will list which versions are supported.

| Version | x86-64 | arm64 |
|---------|--------|-------|
| 10.1 | ✅ | ✅ |
| 10.0 | ✅ | ✅ |
| 9.4 | ✅ | ❌ |
| 9.3 | ✅ | ❌ |
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const version = {
operating_system: {
freebsd: 'v0.10.0',
netbsd: 'v0.4.0',
netbsd: 'v0.5.0',
openbsd: 'v0.9.0'
},

Expand Down

0 comments on commit a9eea90

Please sign in to comment.