rdt-cli 0.3.0__tar.gz → 0.3.2__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 (40) hide show
  1. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/PKG-INFO +1 -1
  2. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/pyproject.toml +1 -1
  3. rdt_cli-0.3.2/rdt_cli/__init__.py +3 -0
  4. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/uv.lock +1 -1
  5. rdt_cli-0.3.0/rdt_cli/__init__.py +0 -3
  6. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/.github/workflows/ci.yml +0 -0
  7. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/.github/workflows/publish.yml +0 -0
  8. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/.gitignore +0 -0
  9. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/README.md +0 -0
  10. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/SCHEMA.md +0 -0
  11. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/SKILL.md +0 -0
  12. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/__main__.py +0 -0
  13. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/auth.py +0 -0
  14. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/cli.py +0 -0
  15. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/client.py +0 -0
  16. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/commands/__init__.py +0 -0
  17. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/commands/_common.py +0 -0
  18. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/commands/auth.py +0 -0
  19. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/commands/browse.py +0 -0
  20. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/commands/post.py +0 -0
  21. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/commands/search.py +0 -0
  22. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/commands/social.py +0 -0
  23. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/config.py +0 -0
  24. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/constants.py +0 -0
  25. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/exceptions.py +0 -0
  26. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/fingerprint.py +0 -0
  27. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/index_cache.py +0 -0
  28. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/models.py +0 -0
  29. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/parser.py +0 -0
  30. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/session.py +0 -0
  31. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/rdt_cli/transports.py +0 -0
  32. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/tests/__init__.py +0 -0
  33. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/tests/fixtures/listing.json +0 -0
  34. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/tests/fixtures/morechildren.json +0 -0
  35. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/tests/fixtures/post_detail.json +0 -0
  36. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/tests/test_cli.py +0 -0
  37. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/tests/test_client.py +0 -0
  38. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/tests/test_parser.py +0 -0
  39. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/tests/test_session.py +0 -0
  40. {rdt_cli-0.3.0 → rdt_cli-0.3.2}/tests/test_smoke.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rdt-cli
3
- Version: 0.3.0
3
+ Version: 0.3.2
4
4
  Summary: A CLI for Reddit — browse feeds, read posts, search, and interact via terminal 📖
5
5
  Project-URL: Homepage, https://github.com/jackwener/rdt-cli
6
6
  Project-URL: Repository, https://github.com/jackwener/rdt-cli
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "rdt-cli"
7
- version = "0.3.0"
7
+ version = "0.3.2"
8
8
  description = "A CLI for Reddit — browse feeds, read posts, search, and interact via terminal 📖"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -0,0 +1,3 @@
1
+ """Reddit CLI."""
2
+
3
+ __version__ = "0.3.2"
@@ -382,7 +382,7 @@ wheels = [
382
382
 
383
383
  [[package]]
384
384
  name = "rdt-cli"
385
- version = "0.3.0"
385
+ version = "0.3.2"
386
386
  source = { editable = "." }
387
387
  dependencies = [
388
388
  { name = "browser-cookie3" },
@@ -1,3 +0,0 @@
1
- """Reddit CLI."""
2
-
3
- __version__ = "0.3.0"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes