Skip to content

Commit

Permalink
bump: version 0.16.0 → 0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
15r10nk committed Dec 14, 2024
1 parent f440f3f commit 89d7ad9
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 64 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,33 @@

<a id='changelog-0.17.0'></a>
# 0.17.0 — 2024-12-14

## Added

- [attrs](https://www.attrs.org/en/stable/index.html) can now contain unmanaged values

``` python
import datetime as dt
import uuid
import attrs
from dirty_equals import IsDatetime
from inline_snapshot import Is, snapshot


@attrs.define
class Attrs:
ts: dt.datetime
id: uuid.UUID


def test():
id = uuid.uuid4()

assert Attrs(dt.datetime.now(), id) == snapshot(
Attrs(ts=IsDatetime(), id=Is(id))
)
```

<a id='changelog-0.16.0'></a>
# 0.16.0 — 2024-12-12

Expand Down
62 changes: 0 additions & 62 deletions changelog.d/20241214_071645_15r10nk-git_attrs.md

This file was deleted.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ keywords = []
name = "inline-snapshot"
readme = "README.md"
requires-python = ">=3.8"
version = "0.16.0"
version = "0.17.0"

[project.entry-points.pytest11]
inline_snapshot = "inline_snapshot.pytest_plugin"
Expand Down Expand Up @@ -146,6 +146,7 @@ dependencies=[
[tool.hatch.envs.release.scripts]
create=[
"scriv collect",
"- pre-commit run -a",
"cz bump"
]
publish=[
Expand Down
2 changes: 1 addition & 1 deletion src/inline_snapshot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
"Snapshot",
]

__version__ = "0.16.0"
__version__ = "0.17.0"

0 comments on commit 89d7ad9

Please sign in to comment.