File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[metadata]
22name = validkit
3- version = 1.1.2
3+ version = 1.1.3
44author = ValidKit
55author_email = developers@validkit.com
66description = Async Python SDK for ValidKit Email Verification API - Built for AI Agents
Original file line number Diff line number Diff line change 99
1010setup (
1111 name = "validkit" ,
12- version = "1.1.2 " ,
12+ version = "1.1.3 " ,
1313 author = "ValidKit" ,
1414 author_email = "developers@validkit.com" ,
1515 description = "Async Python SDK for ValidKit Email Verification API - Built for AI Agents" ,
Original file line number Diff line number Diff line change 55
66setup (
77 name = "validkit" ,
8- version = "1.1.2 " ,
8+ version = "1.1.3 " ,
99 author = "ValidKit" ,
1010 author_email = "developers@validkit.com" ,
1111 description = "Async Python SDK for ValidKit Email Verification API" ,
Original file line number Diff line number Diff line change @@ -39,9 +39,9 @@ def test_defaults(self):
3939
4040 def test_user_agent_contains_version (self ):
4141 config = ValidKitConfig (api_key = "test" )
42- assert "1.1.2 " in config .user_agent
42+ assert "1.1.3 " in config .user_agent
4343
4444 def test_headers_include_sdk_version (self ):
4545 config = ValidKitConfig (api_key = "test" )
46- assert config .headers ["X-SDK-Version" ] == "1.1.2 "
46+ assert config .headers ["X-SDK-Version" ] == "1.1.3 "
4747 assert config .headers ["X-SDK-Language" ] == "python"
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ def test_import_exceptions():
4848
4949def test_version ():
5050 from validkit import __version__
51- assert __version__ == "1.1.2 "
51+ assert __version__ == "1.1.3 "
5252
5353
5454def test_version_single_source_of_truth ():
Original file line number Diff line number Diff line change 11"""Single source of truth for the SDK version."""
22
3- __version__ = "1.1.2 "
3+ __version__ = "1.1.3 "
You can’t perform that action at this time.
0 commit comments