Skip to content

Commit e6fba41

Browse files
committed
Version 3.0.0-alpha.3
1 parent 810f6f1 commit e6fba41

File tree

6 files changed

+26
-20
lines changed

6 files changed

+26
-20
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ Change [ ] to [x] for completed items.
66

77
- [ ] tests and linter show no problems (`npm t`)
88
- [ ] tests are added/updated for bug fixes and new features
9-
- [ ] code is properly formatted (`npm run fmt`)
9+
- [ ] code is properly formatted (`npm run fix`)
1010
- [ ] description of changes is added in CHANGELOG.md
1111
- [ ] update .d.ts typings

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## [Unreleased][unreleased]
44

5+
## [3.0.0-alpha.3][] - 2024-08-31
6+
7+
- Update eslint to 9.x and prettier with configs
8+
- Add node.js 22 to CI
9+
510
## [3.0.0-alpha.2][] - 2023-08-17
611

712
- Implement sql templates
@@ -162,7 +167,8 @@
162167

163168
Code before fork from https://github.com/metarhia/sql
164169

165-
[unreleased]: https://github.com/metarhia/metasql/compare/v3.0.0-alpha.2...HEAD
170+
[unreleased]: https://github.com/metarhia/metasql/compare/v3.0.0-alpha.3...HEAD
171+
[3.0.0-alpha.3]: https://github.com/metarhia/metasql/compare/v3.0.0-alpha.2...v3.0.0-alpha.3
166172
[3.0.0-alpha.2]: https://github.com/metarhia/metasql/compare/v3.0.0-alpha.1...v3.0.0-alpha.2
167173
[3.0.0-alpha.1]: https://github.com/metarhia/metasql/compare/v2.1.5...v3.0.0-alpha.1
168174
[2.1.5]: https://github.com/metarhia/metasql/compare/v2.1.4...v2.1.5

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019-2023 Metarhia contributors (full list in AUTHORS file)
3+
Copyright (c) 2019-2024 Metarhia contributors (full list in AUTHORS file)
44

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ migrations auto generation, queries and introspection.
1515

1616
## License & Contributors
1717

18-
Copyright (c) 2019-2023 [Metarhia contributors](https://github.com/metarhia/metasql/graphs/contributors).
18+
Copyright (c) 2019-2024 [Metarhia contributors](https://github.com/metarhia/metasql/graphs/contributors).
1919
Metasql is [MIT licensed](./LICENSE).\
2020
Metasql is a part of [Metarhia](https://github.com/metarhia) technology stack.

package-lock.json

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metasql",
3-
"version": "3.0.0-alpha.2",
3+
"version": "3.0.0-alpha.3",
44
"description": "MetaSQL Database schema generator, migrations and query builder for Metarhia",
55
"main": "metasql.js",
66
"types": "metasql.d.ts",
@@ -46,10 +46,10 @@
4646
"pg": "^8.11.3"
4747
},
4848
"devDependencies": {
49-
"@types/node": "^22.3.0",
49+
"@types/node": "^22.5.1",
5050
"@types/pg": "^8.10.2",
51-
"eslint": "^9.9.0",
52-
"eslint-config-metarhia": "^9.0.3",
51+
"eslint": "^9.9.1",
52+
"eslint-config-metarhia": "^9.0.5",
5353
"metatests": "^0.8.2",
5454
"prettier": "^3.3.3",
5555
"typescript": "^5.5.4"

0 commit comments

Comments
 (0)