Skip to content

Commit 1871b6b

Browse files
authored
Publish 1.0 of the python packages (#503)
2 parents 6bd16f3 + b3db6aa commit 1871b6b

File tree

8 files changed

+19
-13
lines changed

8 files changed

+19
-13
lines changed

python/CHANGELOG.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,17 @@ Changelog for the selfie Python libraries.
88
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

1010
## [Unreleased]
11-
11+
### Added
12+
- TODO
1213
### Fixed
13-
14+
- TODO
1415
### Changed
16+
- TODO
17+
18+
## [1.0.0] - 2024-12-16
19+
20+
- Full feature parity with 1.0 spec (facets, caching, and binary)
1521

16-
## [0.1.0] - 2024-12-4
22+
## [0.1.0] - 2024-04-04
1723

1824
- Initial release.

python/example-pytest-selfie/pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "example-pytest-selfie"
3-
version = "0.1.0"
3+
version = "1.0.0.dev0"
44
description = "An example project for using the pytest plugin for selfie snapshot testing."
55
authors = [
66
{ name = "Edwin Ye", email = "[email protected]" },
@@ -14,6 +14,7 @@ requires-python = ">=3.9"
1414
dependencies = [
1515
"flask>=3.0.3",
1616
]
17+
classifiers = ["Private :: Do Not Upload"]
1718

1819
[tool.uv.sources]
1920
selfie-lib = { path = "../selfie-lib", editable = true }

python/example-pytest-selfie/tests/cache_test.py

-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ def test_gen_ai():
6262
}
6363
}
6464
}""")
65-
# raise ValueError(f"KEYS={chat.keys()} TYPE={type(chat)}")
6665
image_url: dict = cache_selfie_json(
6766
lambda: openai()
6867
.images.generate(

python/example-pytest-selfie/uv.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/pytest-selfie/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pytest-selfie"
3-
version = "0.1.0"
3+
version = "1.0.1.dev0"
44
description = "A pytest plugin for selfie snapshot testing."
55
authors = [
66
{ name = "Edwin Ye", email = "[email protected]" },

python/pytest-selfie/uv.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/selfie-lib/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "selfie-lib"
3-
version = "0.1.0"
3+
version = "1.0.1.dev0"
44
description = "Infrastructure for creating selfie-compatible test runner plugins."
55
authors = [
66
{ name = "Edwin Ye", email = "[email protected]" },

python/selfie-lib/uv.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)