Skip to content

Commit 9427075

Browse files
committed
Bump version to 0.1.1 and update changelog with Jinja support for schemachange-config.yaml
1 parent 9927a90 commit 9427075

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## [0.1.1] - 2025-08-07
2+
3+
### Added
4+
- jinja support for schemachange-config.yaml
5+
# ...existing changelog entries...

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "sqlfluff-templater-schemachange"
7-
version = "0.1.0"
8-
description = "A standalone SQLFluff templater providing schemachange-compatible Jinja templating without schemachange dependency"
7+
version = "0.1.1"
8+
description = "A SQLFluff templater compatible with schemachange, supporting macros, env_var, and config loading."
99
readme = "README.md"
1010
license = {text = "MIT"}
1111
authors = [

setup.cfg

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,9 @@ addopts = --strict-markers --strict-config
3232
markers =
3333
slow: marks tests as slow (deselect with '-m "not slow"')
3434
integration: marks tests as integration tests
35+
36+
[metadata]
37+
version = 0.1.1
38+
description = A SQLFluff templater compatible with schemachange, supporting macros, env_var, and config loading.
39+
long_description = file: README.md
40+
long_description_content_type = text/markdown

sqlfluff_templater_schemachange/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
spec.loader.exec_module(module)
1717
SchemachangeTemplater = module.SchemachangeTemplater
1818

19-
__version__ = "0.1.0"
19+
__version__ = "0.1.1"
2020
__all__ = ["SchemachangeTemplater"]
2121

2222

0 commit comments

Comments
 (0)