Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,19 @@ jobs:
- 20
- 21
- 22
- 23
- 24
os:
- ubuntu-latest
- windows-latest
- macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ and this project adheres to

## [Unreleased][unreleased]

## [0.9.1][] - 2025-05-23

- Add node.js 23 and 24 to CI
- Update dependencies

## [0.9.0][] - 2024-09-01

- Update dependencies

## [0.8.2][] - 2022-03-17

### Fixed
Expand Down Expand Up @@ -588,7 +597,9 @@ and this project adheres to

- The first version of the `metatests` package.

[unreleased]: https://github.com/metarhia/metatests/compare/v0.8.2...HEAD
[unreleased]: https://github.com/metarhia/metatests/compare/v0.9.1...HEAD
[0.9.1]: https://github.com/metarhia/metatests/compare/v0.9.0...v0.9.1
[0.9.0]: https://github.com/metarhia/metatests/compare/v0.8.2...v0.9.0
[0.8.2]: https://github.com/metarhia/metatests/compare/v0.8.1...v0.8.2
[0.8.1]: https://github.com/metarhia/metatests/compare/v0.8.0...v0.8.1
[0.8.0]: https://github.com/metarhia/metatests/compare/v0.7.2...v0.8.0
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Metatests is licensed for use as follows:
"""
MIT License

Copyright (c) 2016-2024 Metarhia contributors (full list in AUTHORS file)
Copyright (c) 2016-2025 Metarhia contributors (full list in AUTHORS file)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading