Skip to content

Commit

Permalink
Version 3.0.0-alpha.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tshemsedinov committed Aug 31, 2024
1 parent 810f6f1 commit f448d39
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 20 deletions.
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
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]

## [3.0.0-alpha.3][] - 2024-08-31

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

## [3.0.0-alpha.2][] - 2023-08-17

- Implement sql templates
Expand Down Expand Up @@ -162,7 +167,8 @@

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

[unreleased]: https://github.com/metarhia/metasql/compare/v3.0.0-alpha.2...HEAD
[unreleased]: https://github.com/metarhia/metasql/compare/v3.0.0-alpha.3...HEAD
[3.0.0-alpha.3]: https://github.com/metarhia/metasql/compare/v3.0.0-alpha.2...v3.0.0-alpha.3
[3.0.0-alpha.2]: https://github.com/metarhia/metasql/compare/v3.0.0-alpha.1...v3.0.0-alpha.2
[3.0.0-alpha.1]: https://github.com/metarhia/metasql/compare/v2.1.5...v3.0.0-alpha.1
[2.1.5]: https://github.com/metarhia/metasql/compare/v2.1.4...v2.1.5
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) 2019-2023 Metarhia contributors (full list in AUTHORS file)
Copyright (c) 2019-2024 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ migrations auto generation, queries and introspection.

## License & Contributors

Copyright (c) 2019-2023 [Metarhia contributors](https://github.com/metarhia/metasql/graphs/contributors).
Copyright (c) 2019-2024 [Metarhia contributors](https://github.com/metarhia/metasql/graphs/contributors).
Metasql is [MIT licensed](./LICENSE).\
Metasql is a part of [Metarhia](https://github.com/metarhia) technology stack.
24 changes: 12 additions & 12 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metasql",
"version": "3.0.0-alpha.2",
"version": "3.0.0-alpha.3",
"description": "MetaSQL Database schema generator, migrations and query builder for Metarhia",
"main": "metasql.js",
"types": "metasql.d.ts",
Expand Down Expand Up @@ -46,10 +46,10 @@
"pg": "^8.11.3"
},
"devDependencies": {
"@types/node": "^22.3.0",
"@types/node": "^22.5.1",
"@types/pg": "^8.10.2",
"eslint": "^9.9.0",
"eslint-config-metarhia": "^9.0.3",
"eslint": "^9.9.1",
"eslint-config-metarhia": "^9.0.5",
"metatests": "^0.8.2",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
Expand Down

0 comments on commit f448d39

Please sign in to comment.