Skip to content

Commit 3e83b17

Browse files
authored
Release version 0.6.0 (#54)
1 parent 0c5b4fa commit 3e83b17

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## Unreleased
3+
## 0.6.0 (2024-02-14)
44

55
* Upgrade OpenTelemetry Python dependencies to version 1.26.0
66
* Vendored in adapter code from package opentelemetry-exporter-otlp-proto-common and replaced protobuf dependency with custom vanilla python serialization

anaconda/meta.yaml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
package:
2-
name: snowflake_telemetry_python
3-
version: "0.6.0.dev"
2+
name: snowflake-telemetry-python
3+
version: "0.6.0"
44

55
source:
66
path: {{ environ.get('SNOWFLAKE_TELEMETRY_DIR') }}
77

8+
build:
9+
noarch: python
10+
811
requirements:
912
build:
1013
- python

setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@
5252
"Programming Language :: Python :: 3.9",
5353
"Programming Language :: Python :: 3.10",
5454
"Programming Language :: Python :: 3.11",
55+
"Programming Language :: Python :: 3.12",
56+
"Programming Language :: Python :: 3.13",
5557
"Topic :: Database",
5658
"Topic :: Software Development",
5759
"Topic :: Software Development :: Libraries",

src/snowflake/telemetry/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
#
55

66
"""Update this for the versions."""
7-
VERSION = "0.6.0.dev"
7+
VERSION = "0.6.0"

tests/snowflake-telemetry-test-utils/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
install_requires=[
1818
"opentelemetry-exporter-otlp-proto-common == 1.26.0",
1919
"pytest >= 7.0.0",
20-
"snowflake-telemetry-python == 0.6.0.dev",
20+
"snowflake-telemetry-python == 0.6.0",
2121
"Jinja2 == 3.1.4",
2222
"grpcio-tools >= 1.62.3",
2323
"black >= 24.1.0",

0 commit comments

Comments
 (0)