We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6855638 commit 63cfe85Copy full SHA for 63cfe85
2 files changed
README.md
@@ -55,6 +55,7 @@ For more information check: https://developer.mozilla.org/en-US/docs/Web/HTTP/St
55
56
## Release Note
57
58
+* 0.14.0: `httpc select` subcommand 추가, 기본 headers 변경, cookie_utils 추가
59
* 0.13.0: next_data 처리 방식 변경
60
* 0.12.0: `httpc.catcher`의 데이터베이스 형식 변경, migration 추가, `httpc.catcher migrate` CLI 명령어 추가
61
* 0.11.0: `httpc`를 통해 cli 접근, `httpc cookies` 추가, 기타 다양한 기능 개선
src/httpc/_base.py
@@ -3,7 +3,7 @@
3
import logging
4
from abc import abstractmethod
5
6
-__version__ = "0.13.0"
+__version__ = "0.14.0"
7
8
logger = logging.getLogger("httpc")
9
0 commit comments