Skip to content

Commit 4c3812e

Browse files
committed
Update change log for release version 0.6.0
1 parent 0c5b4fa commit 4c3812e

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
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

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
package:
22
name: snowflake_telemetry_python
3-
version: "0.6.0.dev"
3+
version: "0.6.0"
44

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

8+
build:
9+
noarch: python
10+
string: "py38_0" # [py==38]
11+
string: "py39_0" # [py==39]
12+
string: "py310_0" # [py==310]
13+
string: "py311_0" # [py==311]
14+
string: "py312_0" # [py==312]
15+
string: "py313_0" # [py==313]
16+
817
requirements:
918
build:
1019
- 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)