cheatsheet-cli 0.1.0__tar.gz → 0.1.1__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.
@@ -1,5 +1,5 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cheatsheet-cli
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Open, list, and search Will's cheatsheets from the terminal
5
5
  Requires-Python: >=3.10
@@ -18,7 +18,7 @@ import webbrowser
18
18
  from pathlib import Path
19
19
 
20
20
  BASE_URL = "https://cheatsheets.khanpikehome.com"
21
- SHEETS_URL = f"{BASE_URL}/api/sheets.json"
21
+ SHEETS_URL = f"{BASE_URL}/searchindex.json"
22
22
  RAW_URL = f"{BASE_URL}/raw"
23
23
 
24
24
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "cheatsheet-cli"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "Open, list, and search Will's cheatsheets from the terminal"
9
9
  requires-python = ">=3.10"
10
10