diff --git a/.changes/1.1.10.md b/.changes/1.1.10.md new file mode 100644 index 00000000..98ee0de5 --- /dev/null +++ b/.changes/1.1.10.md @@ -0,0 +1,10 @@ +## 1.1.10 - 2025-01-29 +### Added +* Match on corresponding node when passing yaml file path(s) in positional selectors ie like with pre-commit +* Initial support for versioned model inheritance and operations +* Position filepath arguments pointed directly at YAML files will select all the nodes associated with the yaml file allowing better pre-commit function +### Changed +* Relax ruamel.yaml version constraint +* Superseded makefile with taskfile as first step to have 1:1 parity and consistency between CI with local testing -- an interesting use of uv (like nox) +### Removed +* Remove requirements.txt, just use uv diff --git a/.changes/unreleased/Added-20250118-014336.yaml b/.changes/unreleased/Added-20250118-014336.yaml deleted file mode 100644 index c15f4d44..00000000 --- a/.changes/unreleased/Added-20250118-014336.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Added -body: Match on corresponding node when passing yaml file path(s) in positional selectors ie like with pre-commit -time: 2025-01-18T01:43:36.154626-07:00 diff --git a/CHANGELOG.md b/CHANGELOG.md index b7fb6ef6..59aec8f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,17 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## 1.1.10 - 2025-01-29 +### Added +* Match on corresponding node when passing yaml file path(s) in positional selectors ie like with pre-commit +* Initial support for versioned model inheritance and operations +* Position filepath arguments pointed directly at YAML files will select all the nodes associated with the yaml file allowing better pre-commit function +### Changed +* Relax ruamel.yaml version constraint +* Superseded makefile with taskfile as first step to have 1:1 parity and consistency between CI with local testing -- an interesting use of uv (like nox) +### Removed +* Remove requirements.txt, just use uv + ## 1.1.9 - 2025-01-17 ### Added * best effort pass through of unrendered extra inheritables diff --git a/pyproject.toml b/pyproject.toml index 4fa5c041..1d44267a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "dbt-osmosis" -version = "1.1.9" +version = "1.1.10" description = "A dbt utility for managing YAML to make developing with dbt more delightful." readme = "README.md" license = { text = "Apache-2.0" }