Skip to content

Commit

Permalink
Libs: fix descriptions in package repositories. (#1170)
Browse files Browse the repository at this point in the history
  • Loading branch information
tasn authored Jan 23, 2024
1 parent ea39856 commit 805a2f8
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion java/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ POM_DEVELOPER_ID=svix
POM_DEVELOPER_NAME=Svix
POM_DEVELOPER_EMAIL[email protected]

POM_DESCRIPTION=Java Bindings for the Svix API
POM_DESCRIPTION=Svix webhooks API client and webhook verification library
POM_NAME=svix
POM_ARTIFACT_ID=svix
POM_PACKAGING=jar
Expand Down
2 changes: 1 addition & 1 deletion javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "svix",
"version": "1.15.0",
"description": "Svix API client",
"description": "Svix webhooks API client and webhook verification library",
"author": "svix",
"repository": "https://github.com/svix/svix-libs",
"type": "commonjs",
Expand Down
2 changes: 1 addition & 1 deletion kotlin/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ POM_DEVELOPER_ID=svix
POM_DEVELOPER_NAME=Svix
POM_DEVELOPER_EMAIL[email protected]

POM_DESCRIPTION=Async Kotlin Bindings for the Svix API
POM_DESCRIPTION=Svix webhooks async API client and webhook verification library
POM_NAME=svix-kotlin
POM_ARTIFACT_ID=svix-kotlin
POM_PACKAGING=jar
Expand Down
11 changes: 7 additions & 4 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ def read_file(filepath):

def find_meta(meta):
"""Extract __*meta*__ from META_CONTENTS."""
meta_match = re.search(r"^__{meta}__\s+=\s+['\"]([^'\"]*)['\"]".format(meta=meta), META_CONTENTS, re.M)
meta_match = re.search(
r"^__{meta}__\s+=\s+['\"]([^'\"]*)['\"]".format(meta=meta), META_CONTENTS, re.M
)

if meta_match:
return meta_match.group(1)
Expand All @@ -66,8 +68,9 @@ def get_version_string():

# Check validity
if not is_canonical_version(version_string):
message = 'The detected version string "{}" is not in canonical ' "format as defined in PEP 440.".format(
version_string
message = (
'The detected version string "{}" is not in canonical '
"format as defined in PEP 440.".format(version_string)
)
raise ValueError(message)

Expand All @@ -82,7 +85,7 @@ def get_version_string():
setup(
name=PKG_NAME,
version=get_version_string(),
description="Svix",
description="Svix webhooks API client and webhook verification library",
author="Svix",
author_email="[email protected]",
url="https://www.svix.com",
Expand Down
2 changes: 1 addition & 1 deletion ruby/svix.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
spec.email = ["[email protected]"]
spec.license = "MIT"

spec.summary = "Ruby bindings for the Svix API"
spec.summary = "Svix webhooks API client and webhook verification library"
spec.description = "Svix makes webhooks easy and reliable. " \
"Learn more at https://www.svix.com"
spec.homepage = "https://www.svix.com"
Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "svix"
version = "1.15.0"
authors = ["Svix Inc. <[email protected]>"]
edition = "2021"
description="Rust library for interacting with the Svix API and verifying webhook signatures."
description="Svix webhooks API client and webhook verification library"
homepage="https://www.svix.com"
repository="https://github.com/svix/svix-webhooks"
readme="../README.md"
Expand Down

0 comments on commit 805a2f8

Please sign in to comment.