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
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ jobs:
node:
- 18
- 20
- 21
- 22
- 24
- 25
os:
- ubuntu-latest
- windows-latest
Expand All @@ -20,7 +21,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## [Unreleased][unreleased]

## [1.0.9][] - 2025-12-17

- Add node.js 24 and 25 to CI, remove 21
- Update dependencies

## [1.0.8][] - 2023-11-20

- Support default values
Expand Down Expand Up @@ -45,7 +50,8 @@

## [0.0.x][] Pre-release versions

[unreleased]: https://github.com/metarhia/tickplate/compare/v1.0.8...HEAD
[unreleased]: https://github.com/metarhia/tickplate/compare/v1.0.9...HEAD
[1.0.9]: https://github.com/metarhia/tickplate/compare/v1.0.8...v1.0.9
[1.0.8]: https://github.com/metarhia/tickplate/compare/v1.0.7...v1.0.8
[1.0.7]: https://github.com/metarhia/tickplate/compare/v1.0.6...v1.0.7
[1.0.6]: https://github.com/metarhia/tickplate/compare/v1.0.5...v1.0.6
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017-2023 Metarhia contributors
Copyright (c) 2017-2025 Metarhia contributors

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
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
## Tickplate - Back-tick templates for JavaScript

[![ci status](https://github.com/metarhia/tickplate/workflows/Testing%20CI/badge.svg)](https://github.com/metarhia/tickplate/actions?query=workflow%3A%22Testing+CI%22+branch%3Amaster)
[![codacy](https://api.codacy.com/project/badge/Grade/69719502402b43598ffac0fd35f2192c)](https://www.codacy.com/app/metarhia/tickplate)
[![snyk](https://snyk.io/test/github/metarhia/tickplate/badge.svg)](https://snyk.io/test/github/metarhia/tickplate)
[![npm version](https://badge.fury.io/js/tickplate.svg)](https://badge.fury.io/js/tickplate)
[![npm downloads/month](https://img.shields.io/npm/dm/tickplate.svg)](https://www.npmjs.com/package/tickplate)
Expand Down Expand Up @@ -60,6 +59,6 @@ console.log(templ(data));

## License & Contributors

Copyright (c) 2017-2023 [Metarhia contributors](https://github.com/metarhia/tickplate/graphs/contributors).
Copyright (c) 2017-2025 [Metarhia contributors](https://github.com/metarhia/tickplate/graphs/contributors).
Tickplate is [MIT licensed](./LICENSE).\
Tickplate is a part of [Metarhia](https://github.com/metarhia) technology stack.
Loading