@@ -7,7 +7,7 @@ maintainers = [{ name = "Litestar Developers", email = "
[email protected] " }]
77name = " sqlspec"
88readme = " README.md"
99requires-python = " >=3.9, <4.0"
10- version = " 0.5 .0"
10+ version = " 0.6 .0"
1111
1212[project .optional-dependencies ]
1313adbc = [" adbc-driver-manager" , " pyarrow" ]
@@ -22,7 +22,7 @@ flask = ["flask"]
2222litestar = [" litestar" ]
2323msgspec = [" msgspec" ]
2424oracledb = [" oracledb" ]
25- performance = [" sqlglot[rs]" , " google-re2; sys_platform == \" linux \" " ]
25+ performance = [" sqlglot[rs]" ]
2626psycopg = [" psycopg[binary,pool]" ]
2727pydantic = [" pydantic" ]
2828pymssql = [" pymssql" ]
@@ -281,66 +281,3 @@ known-first-party = ["sqlspec", "tests"]
281281[tool .ruff .format ]
282282docstring-code-format = true
283283docstring-code-line-length = 88
284-
285- [tool .git-cliff .changelog ]
286- body = """
287- {% if version %}\
288- `Release [v{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }} <https://github.com/litestar-org/sqlspec/releases/tag/v{{ version | trim_start_matches(pat="v") }}>`_
289- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
290- * `See All commits in v{{ version | trim_start_matches(pat="v") }} <https://github.com/litestar-org/sqlspec/commits/v{{ version | trim_start_matches(pat="v") }}>`_
291- {% else %}\
292- [unreleased]
293- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
294- {% endif %}\
295- {% if previous %}\
296- {% if previous.commit_id %}
297- `{{ previous.commit_id | truncate(length=7, end="") }} <https://github.com/litestar-org/sqlspec/commit/{{ previous.commit_id }}>`_ ... \
298- `{{ commit_id | truncate(length=7, end="") }} <https://github.com/litestar-org/sqlspec/commit/{{ commit_id }}>`_ \
299- | `See diff for {{ version | trim_start_matches(pat="v") }} <https://github.com/litestar-org/sqlspec/compare/{{ previous.commit_id }}...{{ commit_id }}>`_
300- {% endif %}\
301- {% endif %}\
302- {% for group, commits in commits | group_by(attribute="group") %}
303- {{ group | upper_first }}
304- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
305- {% for commit in commits %}
306- * (`{{ commit.id | truncate(length=7, end="") }} <https://github.com/litestar-org/sqlspec/commit/{{ commit.id }}>`_) {% if commit.breaking %}[**breaking**] {% endif %} - {{ commit.message | upper_first }} ({{ commit.author.name }})\
307- {% for footer in commit.footers -%}
308- , {{ footer.token }}{{ footer.separator }}{{ footer.value }}\
309- {% endfor %}\
310- {% endfor %}
311- {% endfor %}\n
312- """
313- footer = """
314- Type Lens Changelog
315- """
316- header = """
317- =========
318- Changelog
319- =========\n
320- All commits to this project will be documented in this file.\n
321- """
322- trim = true
323-
324- [tool .git-cliff .git ]
325- commit_parsers = [
326- { message = " ^feat" , group = " Features" },
327- { message = " ^fix" , group = " Bug Fixes" },
328- { message = " ^doc" , group = " Documentation" },
329- { message = " ^perf" , group = " Performance" },
330- { message = " ^refactor" , group = " Refactor" },
331- { message = " ^style" , group = " Styling" },
332- { message = " ^test" , group = " Testing" },
333- { message = " ^chore\\ (release\\ ): prepare for" , skip = true },
334- { message = " ^chore" , group = " Miscellaneous Tasks" },
335- { body = " .*security" , group = " Security" },
336- ]
337- conventional_commits = true
338- filter_commits = false
339- filter_unconventional = true
340- ignore_tags = " "
341- protect_breaking_commits = false
342- skip_tags = " v0.1.0-beta.1"
343- sort_commits = " oldest"
344- split_commits = false
345- tag_pattern = " v[0-9]*"
346- topo_order = false
0 commit comments