Skip to content

Commit 805a2f8

Browse files
authored
Libs: fix descriptions in package repositories. (#1170)
1 parent ea39856 commit 805a2f8

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

java/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ POM_DEVELOPER_ID=svix
1212
POM_DEVELOPER_NAME=Svix
1313
POM_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
1616
POM_NAME=svix
1717
POM_ARTIFACT_ID=svix
1818
POM_PACKAGING=jar

javascript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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",

kotlin/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ POM_DEVELOPER_ID=svix
1212
POM_DEVELOPER_NAME=Svix
1313
POM_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
1616
POM_NAME=svix-kotlin
1717
POM_ARTIFACT_ID=svix-kotlin
1818
POM_PACKAGING=jar

python/setup.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ def read_file(filepath):
4242

4343
def 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():
8285
setup(
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",

ruby/svix.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "svix"
33
version = "1.15.0"
44
authors = ["Svix Inc. <oss@svix.com>"]
55
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"
77
homepage="https://www.svix.com"
88
repository="https://github.com/svix/svix-webhooks"
99
readme="../README.md"

0 commit comments

Comments
 (0)