podojo-cli 1.1.2__tar.gz → 1.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/CHANGELOG.md +5 -0
  2. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/PKG-INFO +1 -1
  3. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/pyproject.toml +1 -1
  4. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/src/podojo_cli/commands/usertests.py +1 -1
  5. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/uv.lock +1 -1
  6. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/.github/workflows/publish.yml +0 -0
  7. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/.gitignore +0 -0
  8. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/CLAUDE.md +0 -0
  9. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/LICENSE +0 -0
  10. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/README.md +0 -0
  11. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/src/podojo_cli/__init__.py +0 -0
  12. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/src/podojo_cli/client.py +0 -0
  13. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/src/podojo_cli/commands/__init__.py +0 -0
  14. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/src/podojo_cli/commands/auth.py +0 -0
  15. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/src/podojo_cli/commands/interviews.py +0 -0
  16. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/src/podojo_cli/commands/projects.py +0 -0
  17. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/src/podojo_cli/commands/showreel.py +0 -0
  18. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/src/podojo_cli/commands/synth.py +0 -0
  19. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/src/podojo_cli/commands/transcripts.py +0 -0
  20. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/src/podojo_cli/commands/videos.py +0 -0
  21. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/src/podojo_cli/config.py +0 -0
  22. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/src/podojo_cli/main.py +0 -0
  23. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/src/podojo_cli/synth/__init__.py +0 -0
  24. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/src/podojo_cli/synth/driver.py +0 -0
  25. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/src/podojo_cli/synth/session.py +0 -0
  26. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/src/podojo_cli/version_check.py +0 -0
  27. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/src/podojo_cli/video/__init__.py +0 -0
  28. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/src/podojo_cli/video/showreel.py +0 -0
  29. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/tests/conftest.py +0 -0
  30. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/tests/test_auth.py +0 -0
  31. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/tests/test_interviews.py +0 -0
  32. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/tests/test_projects.py +0 -0
  33. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/tests/test_showreel.py +0 -0
  34. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/tests/test_transcripts.py +0 -0
  35. {podojo_cli-1.1.2 → podojo_cli-1.2.0}/tests/test_usertests.py +0 -0
@@ -5,6 +5,11 @@ All notable changes to the Podojo CLI will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org).
7
7
 
8
+ ## [1.2.0] - 2026-05-25
9
+
10
+ ### Removed
11
+ - Drop `intro` and `feedback` step variants. They had no rendering effect on the participant frontend. Use `instruction` (briefing before a prototype step) or `question` (open-ended response) instead. Existing stored values are not migrated and continue to render as default.
12
+
8
13
  ## [1.1.2] - 2026-05-24
9
14
 
10
15
  ### Changed
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: podojo-cli
3
- Version: 1.1.2
3
+ Version: 1.2.0
4
4
  Summary: CLI for the Podojo user research platform
5
5
  Project-URL: Homepage, https://github.com/podojo/cli-podojo
6
6
  Project-URL: Source, https://github.com/podojo/cli-podojo
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "podojo-cli"
3
- version = "1.1.2"
3
+ version = "1.2.0"
4
4
  description = "CLI for the Podojo user research platform"
5
5
  readme = "README.md"
6
6
  license = "MIT"
@@ -13,7 +13,7 @@ console = Console()
13
13
 
14
14
  REQUIRED_FIELDS = ["usertest_id", "title", "logo", "prototype_url", "steps"]
15
15
  VALID_STEP_TYPES = {"screen", "prototype"}
16
- VALID_STEP_VARIANTS = {"question", "task", "intro", "feedback", "instruction"}
16
+ VALID_STEP_VARIANTS = {"question", "task", "instruction"}
17
17
  REQUIRED_STEP_FIELDS = ["type", "title"]
18
18
 
19
19
  RECORDER_SNIPPET = """\
@@ -369,7 +369,7 @@ wheels = [
369
369
 
370
370
  [[package]]
371
371
  name = "podojo-cli"
372
- version = "1.1.0"
372
+ version = "1.2.0"
373
373
  source = { editable = "." }
374
374
  dependencies = [
375
375
  { name = "httpx" },
File without changes
File without changes
File without changes
File without changes
File without changes