Skip to content

Commit

Permalink
SNOW-1063077 Update release notes and prep for 0.3.0 release (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-tmonk authored Mar 11, 2024
1 parent b35154a commit 1ffc961
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 7 deletions.
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
Release History
# Release History

## 0.3.0 (2024-03-11)

* The `telemetry.add_event` function now adds an event to the current span, if any. This was a no op stub function before.
* The `telemetry.add_span_attribute` function now adds an attribute to the current span, if any. This was a no op stub function before.
* Added support for Python 3.11
* Removed support for Python 3.7
* Added `snowflake.telemetry._internal` module that wraps opentelemetry modules for use internally by Snowflake

## 0.2.0 (2023-05-01)

* Added support for Python 3.10

## 0.1.0 (2022-09-29)

* Update README and docstring to indicate this package is a stub

## 0.0.0 (2022-09-09)

Initial release.
* Initial release.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@

`snowflake-telemetry-python` is a package that supports emitting telemetry data from Python UDFs, UDTFs, and Stored Procedures.

The package is a stub for the full functionality when running in Snowflake.

## Getting started

To install the latest release of this package as an end user, run
Expand Down
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.2.1.dev"
version: "0.3.0.dev"

source:
path: {{ environ.get('SNOWFLAKE_TELEMETRY_DIR') }}
Expand Down
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.2.1.dev"
VERSION = "0.3.0.dev"
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.2.1.dev",
"snowflake-telemetry-python == 0.3.0.dev",
],
packages=find_namespace_packages(
where='src'
Expand Down

0 comments on commit 1ffc961

Please sign in to comment.