Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.0.3 #35

Merged
merged 4 commits into from
Sep 2, 2024
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
11 changes: 0 additions & 11 deletions .eslintrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ Change [ ] to [x] for completed items.

- [ ] tests and linter show no problems (`npm t`)
- [ ] tests are added/updated for bug fixes and new features
- [ ] code is properly formatted (`npm run fmt`)
- [ ] code is properly formatted (`npm run fix`)
- [ ] description of changes is added in CHANGELOG.md
- [ ] update .d.ts typings
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
name: Testing CI

on: pull_request

jobs:
build:
runs-on: ${{ matrix.os }}
Expand All @@ -11,6 +9,7 @@ jobs:
- 18
- 20
- 21
- 22
os:
- ubuntu-latest
- windows-latest
Expand Down
10 changes: 0 additions & 10 deletions .prettierrc

This file was deleted.

11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## [Unreleased][unreleased]

## [0.0.3][] - 2024-09-02

- Update eslint to 9.x and prettier with configs
- Add node.js 22 to CI

## [0.0.2][] - 2022-03-02

- Prevent arbitrary js code execution
- Implement unknown identifier hook

Expand All @@ -14,6 +21,8 @@

- Library stucture

[unreleased]: https://github.com/metarhia/metacalc/compare/v0.0.1...HEAD
[unreleased]: https://github.com/metarhia/metacalc/compare/v0.0.3...HEAD
[0.0.3]: https://github.com/metarhia/metacalc/compare/v0.0.2...v0.0.3
[0.0.2]: https://github.com/metarhia/metacalc/compare/v0.0.1...v0.0.2
[0.0.1]: https://github.com/metarhia/metacalc/compare/v0.0.0...v0.0.1
[0.0.0]: https://github.com/metarhia/metacalc/releases/tag/v0.0.0
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ Before open pull request please follow checklist:

- [ ] tests and linter show no problems (`npm t`)
- [ ] tests are added/updated for bug fixes and new features
- [ ] code is properly formatted (`npm run fmt`)
- [ ] code is properly formatted (`npm run fix`)
- [ ] description of changes is added in CHANGELOG.md
- [ ] update .d.ts typings
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) 2022-2023 Metarhia contributors
Copyright (c) 2022-2024 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ console.log({ sheet });

## License & Contributors

Copyright (c) 2022-2023 [Metarhia contributors](https://github.com/metarhia/metacalc/blob/master/AUTHORS).
Copyright (c) 2022-2024 [Metarhia contributors](https://github.com/metarhia/metacalc/blob/master/AUTHORS).
Metacalc is [MIT licensed](./LICENSE).\
Metacalc is a part of [Metarhia](https://github.com/metarhia) technology stack.
5 changes: 5 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
'use strict';

const init = require('eslint-config-metarhia');

module.exports = [...init];
Loading
Loading