diff --git a/python/CHANGELOG.md b/python/CHANGELOG.md index 1ba30a5e..46e4c391 100644 --- a/python/CHANGELOG.md +++ b/python/CHANGELOG.md @@ -8,11 +8,17 @@ Changelog for the selfie Python libraries. and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] - +### Added +- TODO ### Fixed - +- TODO ### Changed +- TODO + +## [1.0.0] - 2024-12-16 + +- Full feature parity with 1.0 spec (facets, caching, and binary) -## [0.1.0] - 2024-12-4 +## [0.1.0] - 2024-04-04 - Initial release. diff --git a/python/example-pytest-selfie/pyproject.toml b/python/example-pytest-selfie/pyproject.toml index baa8282e..a75785dc 100644 --- a/python/example-pytest-selfie/pyproject.toml +++ b/python/example-pytest-selfie/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "example-pytest-selfie" -version = "0.1.0" +version = "1.0.0.dev0" description = "An example project for using the pytest plugin for selfie snapshot testing." authors = [ { name = "Edwin Ye", email = "EdwinYeDeveloper@gmail.com" }, @@ -14,6 +14,7 @@ requires-python = ">=3.9" dependencies = [ "flask>=3.0.3", ] +classifiers = ["Private :: Do Not Upload"] [tool.uv.sources] selfie-lib = { path = "../selfie-lib", editable = true } diff --git a/python/example-pytest-selfie/tests/cache_test.py b/python/example-pytest-selfie/tests/cache_test.py index 8f458c45..955116b3 100644 --- a/python/example-pytest-selfie/tests/cache_test.py +++ b/python/example-pytest-selfie/tests/cache_test.py @@ -62,7 +62,6 @@ def test_gen_ai(): } } }""") - # raise ValueError(f"KEYS={chat.keys()} TYPE={type(chat)}") image_url: dict = cache_selfie_json( lambda: openai() .images.generate( diff --git a/python/example-pytest-selfie/uv.lock b/python/example-pytest-selfie/uv.lock index df1c13f5..e8333839 100644 --- a/python/example-pytest-selfie/uv.lock +++ b/python/example-pytest-selfie/uv.lock @@ -171,7 +171,7 @@ wheels = [ [[package]] name = "example-pytest-selfie" -version = "0.1.0" +version = "1.0.0.dev0" source = { virtual = "." } dependencies = [ { name = "flask" }, @@ -663,7 +663,7 @@ wheels = [ [[package]] name = "pytest-selfie" -version = "0.1.0" +version = "1.0.0" source = { editable = "../pytest-selfie" } dependencies = [ { name = "pytest" }, @@ -725,7 +725,7 @@ wheels = [ [[package]] name = "selfie-lib" -version = "0.1.0" +version = "1.0.0" source = { editable = "../selfie-lib" } [package.metadata] diff --git a/python/pytest-selfie/pyproject.toml b/python/pytest-selfie/pyproject.toml index 821bd7af..d18ec24a 100644 --- a/python/pytest-selfie/pyproject.toml +++ b/python/pytest-selfie/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pytest-selfie" -version = "0.1.0" +version = "1.0.1.dev0" description = "A pytest plugin for selfie snapshot testing." authors = [ { name = "Edwin Ye", email = "EdwinYeDeveloper@gmail.com" }, diff --git a/python/pytest-selfie/uv.lock b/python/pytest-selfie/uv.lock index aec7fd47..72a4260e 100644 --- a/python/pytest-selfie/uv.lock +++ b/python/pytest-selfie/uv.lock @@ -87,7 +87,7 @@ wheels = [ [[package]] name = "pytest-selfie" -version = "0.1.0" +version = "1.0.0" source = { virtual = "." } dependencies = [ { name = "pytest" }, @@ -141,7 +141,7 @@ wheels = [ [[package]] name = "selfie-lib" -version = "0.1.0" +version = "1.0.0" source = { editable = "../selfie-lib" } [package.metadata] diff --git a/python/selfie-lib/pyproject.toml b/python/selfie-lib/pyproject.toml index 993b7d82..2ba526a4 100644 --- a/python/selfie-lib/pyproject.toml +++ b/python/selfie-lib/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "selfie-lib" -version = "0.1.0" +version = "1.0.1.dev0" description = "Infrastructure for creating selfie-compatible test runner plugins." authors = [ { name = "Edwin Ye", email = "EdwinYeDeveloper@gmail.com" }, diff --git a/python/selfie-lib/uv.lock b/python/selfie-lib/uv.lock index f3592a7b..afec8460 100644 --- a/python/selfie-lib/uv.lock +++ b/python/selfie-lib/uv.lock @@ -112,7 +112,7 @@ wheels = [ [[package]] name = "selfie-lib" -version = "0.1.0" +version = "1.0.0" source = { virtual = "." } [package.dev-dependencies]