Skip to content

Commit

Permalink
SNOW-1042090 Bump version to 0.3.1 for TestPyPI release (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-tmonk authored Apr 10, 2024
1 parent b568bd9 commit 9f24795
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
2 changes: 1 addition & 1 deletion anaconda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: snowflake_telemetry_python
version: "0.3.0"
version: "0.3.1"

source:
path: {{ environ.get('SNOWFLAKE_TELEMETRY_DIR') }}
Expand Down
19 changes: 16 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
)

DESCRIPTION = 'Snowflake Telemetry Python'
LONG_DESCRIPTION = 'This package provides a set of telemetry APIs for use in Snowflake'
LONG_DESCRIPTION = """This package provides a set of telemetry APIs for developers building on the Snowflake platform.
Snowflake Documentation is available at: https://docs.snowflake.com/
Source code is also available at: https://github.com/snowflakedb/snowflake-telemetry-python
"""
SNOWFLAKE_TELEMETRY_SRC_DIR = os.path.join("src", "snowflake", "telemetry")

VERSION = None
Expand All @@ -18,10 +23,11 @@
version=VERSION,
author="Snowflake, Inc",
author_email="[email protected]",
url="https://www.snowflake.com/",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
install_requires=[
"setuptools >= 40.0.0, < 66.0.0",
"setuptools >= 40.0.0",
"opentelemetry-api == 1.12.0",
"opentelemetry-exporter-otlp == 1.12.0",
"opentelemetry-sdk == 1.12.0",
Expand Down Expand Up @@ -54,6 +60,13 @@
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis",
],
],
project_urls={
"Homepage": "https://www.snowflake.com/",
"Changelog": "https://github.com/snowflakedb/snowflake-telemetry-python/blob/main/CHANGELOG.md",
"Documentation": "https://docs.snowflake.com/en/developer-guide/logging-tracing/logging-tracing-overview",
"Issues": "https://github.com/snowflakedb/snowflake-telemetry-python/issues",
"Repository": "https://github.com/snowflakedb/snowflake-telemetry-python/",
},
zip_safe=True,
)
2 changes: 1 addition & 1 deletion src/snowflake/telemetry/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
#

"""Update this for the versions."""
VERSION = "0.3.0"
VERSION = "0.3.1"
2 changes: 1 addition & 1 deletion tests/snowflake-telemetry-test-utils/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
long_description=LONG_DESCRIPTION,
install_requires=[
"pytest >= 7.0.0",
"snowflake-telemetry-python == 0.3.0",
"snowflake-telemetry-python == 0.3.1",
],
packages=find_namespace_packages(
where='src'
Expand Down

0 comments on commit 9f24795

Please sign in to comment.