File tree Expand file tree Collapse file tree 6 files changed +12
-9
lines changed Expand file tree Collapse file tree 6 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ POM_DEVELOPER_ID=svix
1212POM_DEVELOPER_NAME =Svix
1313POM_DEVELOPER_EMAIL =support@svix.com
1414
15- POM_DESCRIPTION =Java Bindings for the Svix API
15+ POM_DESCRIPTION =Svix webhooks API client and webhook verification library
1616POM_NAME =svix
1717POM_ARTIFACT_ID =svix
1818POM_PACKAGING =jar
Original file line number Diff line number Diff line change 11{
22 "name" : " svix" ,
33 "version" : " 1.15.0" ,
4- "description" : " Svix API client" ,
4+ "description" : " Svix webhooks API client and webhook verification library " ,
55 "author" : " svix" ,
66 "repository" : " https://github.com/svix/svix-libs" ,
77 "type" : " commonjs" ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ POM_DEVELOPER_ID=svix
1212POM_DEVELOPER_NAME =Svix
1313POM_DEVELOPER_EMAIL =support@svix.com
1414
15- POM_DESCRIPTION =Async Kotlin Bindings for the Svix API
15+ POM_DESCRIPTION =Svix webhooks async API client and webhook verification library
1616POM_NAME =svix-kotlin
1717POM_ARTIFACT_ID =svix-kotlin
1818POM_PACKAGING =jar
Original file line number Diff line number Diff line change @@ -42,7 +42,9 @@ def read_file(filepath):
4242
4343def find_meta (meta ):
4444 """Extract __*meta*__ from META_CONTENTS."""
45- meta_match = re .search (r"^__{meta}__\s+=\s+['\"]([^'\"]*)['\"]" .format (meta = meta ), META_CONTENTS , re .M )
45+ meta_match = re .search (
46+ r"^__{meta}__\s+=\s+['\"]([^'\"]*)['\"]" .format (meta = meta ), META_CONTENTS , re .M
47+ )
4648
4749 if meta_match :
4850 return meta_match .group (1 )
@@ -66,8 +68,9 @@ def get_version_string():
6668
6769 # Check validity
6870 if not is_canonical_version (version_string ):
69- message = 'The detected version string "{}" is not in canonical ' "format as defined in PEP 440." .format (
70- version_string
71+ message = (
72+ 'The detected version string "{}" is not in canonical '
73+ "format as defined in PEP 440." .format (version_string )
7174 )
7275 raise ValueError (message )
7376
@@ -82,7 +85,7 @@ def get_version_string():
8285setup (
8386 name = PKG_NAME ,
8487 version = get_version_string (),
85- description = "Svix" ,
88+ description = "Svix webhooks API client and webhook verification library " ,
8689 author = "Svix" ,
8790 author_email = "development@svix.com" ,
8891 url = "https://www.svix.com" ,
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
1010 spec . email = [ "support@svix.com" ]
1111 spec . license = "MIT"
1212
13- spec . summary = "Ruby bindings for the Svix API "
13+ spec . summary = "Svix webhooks API client and webhook verification library "
1414 spec . description = "Svix makes webhooks easy and reliable. " \
1515 "Learn more at https://www.svix.com"
1616 spec . homepage = "https://www.svix.com"
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "svix"
33version = " 1.15.0"
44authors = [" Svix Inc. <oss@svix.com>" ]
55edition = " 2021"
6- description =" Rust library for interacting with the Svix API and verifying webhook signatures. "
6+ description =" Svix webhooks API client and webhook verification library "
77homepage =" https://www.svix.com"
88repository =" https://github.com/svix/svix-webhooks"
99readme =" ../README.md"
You can’t perform that action at this time.
0 commit comments