fablazing-cli 0.2.1__tar.gz → 0.2.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 (20) hide show
  1. {fablazing_cli-0.2.1 → fablazing_cli-0.2.2}/CHANGELOG.md +5 -0
  2. {fablazing_cli-0.2.1 → fablazing_cli-0.2.2}/PKG-INFO +1 -1
  3. {fablazing_cli-0.2.1 → fablazing_cli-0.2.2}/pyproject.toml +1 -1
  4. fablazing_cli-0.2.2/src/fablazing_cli/__init__.py +1 -0
  5. {fablazing_cli-0.2.1 → fablazing_cli-0.2.2}/src/fablazing_cli/reference.py +7 -5
  6. fablazing_cli-0.2.1/src/fablazing_cli/__init__.py +0 -1
  7. {fablazing_cli-0.2.1 → fablazing_cli-0.2.2}/.gitignore +0 -0
  8. {fablazing_cli-0.2.1 → fablazing_cli-0.2.2}/README.md +0 -0
  9. {fablazing_cli-0.2.1 → fablazing_cli-0.2.2}/src/fablazing_cli/client.py +0 -0
  10. {fablazing_cli-0.2.1 → fablazing_cli-0.2.2}/src/fablazing_cli/commands/__init__.py +0 -0
  11. {fablazing_cli-0.2.1 → fablazing_cli-0.2.2}/src/fablazing_cli/commands/auth.py +0 -0
  12. {fablazing_cli-0.2.1 → fablazing_cli-0.2.2}/src/fablazing_cli/commands/card.py +0 -0
  13. {fablazing_cli-0.2.1 → fablazing_cli-0.2.2}/src/fablazing_cli/commands/hero.py +0 -0
  14. {fablazing_cli-0.2.1 → fablazing_cli-0.2.2}/src/fablazing_cli/commands/matchup.py +0 -0
  15. {fablazing_cli-0.2.1 → fablazing_cli-0.2.2}/src/fablazing_cli/commands/meta.py +0 -0
  16. {fablazing_cli-0.2.1 → fablazing_cli-0.2.2}/src/fablazing_cli/commands/tournaments.py +0 -0
  17. {fablazing_cli-0.2.1 → fablazing_cli-0.2.2}/src/fablazing_cli/config.py +0 -0
  18. {fablazing_cli-0.2.1 → fablazing_cli-0.2.2}/src/fablazing_cli/main.py +0 -0
  19. {fablazing_cli-0.2.1 → fablazing_cli-0.2.2}/src/fablazing_cli/output.py +0 -0
  20. {fablazing_cli-0.2.1 → fablazing_cli-0.2.2}/src/fablazing_cli/resolve.py +0 -0
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.2
4
+
5
+ - Reference: name the exact `meets_threshold` field on tech candidates and
6
+ document `data_through` on matchup responses (newest ingested match)
7
+
3
8
  ## 0.2.1
4
9
 
5
10
  - Matchup: when no card clears the tech-card significance bar (common in
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fablazing-cli
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Fablazing analytics from your terminal - Flesh and Blood matchups, meta, cards, and tournaments.
5
5
  Project-URL: Homepage, https://fablazing.com
6
6
  Author: Fablazing
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "fablazing-cli"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "Fablazing analytics from your terminal - Flesh and Blood matchups, meta, cards, and tournaments."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -0,0 +1 @@
1
+ __version__ = "0.2.2"
@@ -34,14 +34,16 @@ analytics and paper tournament results for competitive Flesh and Blood.
34
34
  in deck1_transform / deck2_transform.
35
35
  - Tech cards are Wilson-scored against the matchup baseline, so a lucky
36
36
  streak on a small sample doesn't make the list. In close matchups no
37
- card may clear the bar - then `tech_candidates` lists the closest
38
- near-misses with their scores, explicitly marked below-threshold.
37
+ card may clear the bar - then `deck{1,2}_tech_candidates` lists the
38
+ closest near-misses with their scores; each entry carries
39
+ `meets_threshold: false` (that field, exactly) and the response
40
+ includes a `deck{1,2}_tech_note` explaining the situation.
39
41
  - Tournament standings and decklists come from official paper events.
40
42
  - Freshness: `matchup` queries live match data (ingested every ~5
41
43
  minutes). Meta snapshot/movers and card trends/popular are daily
42
- aggregates (previous day processed at 03:00 / 02:00 UTC) - their
43
- responses carry `data_through` in meta so you can see exactly how
44
- fresh the numbers are.
44
+ aggregates (previous day processed at 03:00 / 02:00 UTC). Every one of
45
+ these responses carries `data_through` in meta - for matchup it is the
46
+ newest ingested match, for aggregates the latest processed day.
45
47
 
46
48
  ## Commands
47
49
  - `fablazing matchup EVO001 "Jarl" --days 30`
@@ -1 +0,0 @@
1
- __version__ = "0.2.1"
File without changes
File without changes