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
12
12
POM_DEVELOPER_NAME =Svix
13
13
POM_DEVELOPER_EMAIL =support@svix.com
14
14
15
- POM_DESCRIPTION =Java Bindings for the Svix API
15
+ POM_DESCRIPTION =Svix webhooks API client and webhook verification library
16
16
POM_NAME =svix
17
17
POM_ARTIFACT_ID =svix
18
18
POM_PACKAGING =jar
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " svix" ,
3
3
"version" : " 1.15.0" ,
4
- "description" : " Svix API client" ,
4
+ "description" : " Svix webhooks API client and webhook verification library " ,
5
5
"author" : " svix" ,
6
6
"repository" : " https://github.com/svix/svix-libs" ,
7
7
"type" : " commonjs" ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ POM_DEVELOPER_ID=svix
12
12
POM_DEVELOPER_NAME =Svix
13
13
POM_DEVELOPER_EMAIL =support@svix.com
14
14
15
- POM_DESCRIPTION =Async Kotlin Bindings for the Svix API
15
+ POM_DESCRIPTION =Svix webhooks async API client and webhook verification library
16
16
POM_NAME =svix-kotlin
17
17
POM_ARTIFACT_ID =svix-kotlin
18
18
POM_PACKAGING =jar
Original file line number Diff line number Diff line change @@ -42,7 +42,9 @@ def read_file(filepath):
42
42
43
43
def find_meta (meta ):
44
44
"""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
+ )
46
48
47
49
if meta_match :
48
50
return meta_match .group (1 )
@@ -66,8 +68,9 @@ def get_version_string():
66
68
67
69
# Check validity
68
70
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 )
71
74
)
72
75
raise ValueError (message )
73
76
@@ -82,7 +85,7 @@ def get_version_string():
82
85
setup (
83
86
name = PKG_NAME ,
84
87
version = get_version_string (),
85
- description = "Svix" ,
88
+ description = "Svix webhooks API client and webhook verification library " ,
86
89
author = "Svix" ,
87
90
author_email = "development@svix.com" ,
88
91
url = "https://www.svix.com" ,
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
spec . email = [ "support@svix.com" ]
11
11
spec . license = "MIT"
12
12
13
- spec . summary = "Ruby bindings for the Svix API "
13
+ spec . summary = "Svix webhooks API client and webhook verification library "
14
14
spec . description = "Svix makes webhooks easy and reliable. " \
15
15
"Learn more at https://www.svix.com"
16
16
spec . homepage = "https://www.svix.com"
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "svix"
3
3
version = " 1.15.0"
4
4
authors = [" Svix Inc. <oss@svix.com>" ]
5
5
edition = " 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 "
7
7
homepage =" https://www.svix.com"
8
8
repository =" https://github.com/svix/svix-webhooks"
9
9
readme =" ../README.md"
You can’t perform that action at this time.
0 commit comments