From 07858373913a5aee67a1e6061880dfa9c05c3386 Mon Sep 17 00:00:00 2001 From: saikumarrs <88789928+saikumarrs@users.noreply.github.com> Date: Mon, 18 Oct 2021 16:36:52 +0530 Subject: [PATCH] Enhancement: Updates for V1.0.0 Release (#3) * Bumped version * Updated README.md --- README.md | 10 +++++----- rudder_analytics/version.py | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cf4e01ae..93a26b8a 100644 --- a/README.md +++ b/README.md @@ -8,13 +8,13 @@ More details on the Python SDK can be found in our [**documentation**](https://d Install `rudder-sdk-python` using `pip`: -``` +```bash pip install rudder-sdk-python ``` ## Initializing the RudderStack Client -``` +```python import rudder_analytics rudder_analytics.write_key = @@ -25,7 +25,7 @@ rudder_analytics.data_plane_url = Once the RudderStack client is initialized, you can use it to send your customer events. A sample `track` call is shown below: -``` +```python rudder_analytics.track('developer_user_id', 'Simple Track Event', { 'key1': 'val1' }) @@ -35,10 +35,10 @@ For more information on the supported calls, refer to the [**documentation**](ht ## About RudderStack -[**RudderStack**](https://rudderstack.com/) is a customer data platform for developers. Our tooling makes it easy to deploy pipelines that collect customer data from every app, website and SaaS platform, then activate it in your warehouse and business tools. +[**RudderStack**](https://rudderstack.com/) is a customer data platform for developers. Our tooling makes it easy to deploy pipelines that collect customer data from every app, website and SaaS platform, then activate it in your warehouse and business tools. More information on RudderStack can be found [**here**](https://github.com/rudderlabs/rudder-server). ## Contact Us -If you come across any issues while configuring or using this SDK, you can start a conversation on our [**Slack**](https://resources.rudderstack.com/join-rudderstack-slack) channel. +For more information on any of the sections covered in this readme, you can [**contact us**](mailto:%20docs@rudderstack.com) or start a conversation on our [**Slack**](https://resources.rudderstack.com/join-rudderstack-slack) channel. diff --git a/rudder_analytics/version.py b/rudder_analytics/version.py index 4b0cc60f..1e5a6058 100644 --- a/rudder_analytics/version.py +++ b/rudder_analytics/version.py @@ -1 +1 @@ -VERSION = '1.0.0-beta.2' +VERSION = '1.0.0'