Skip to content

Commit 0785837

Browse files
authored
Enhancement: Updates for V1.0.0 Release (#3)
* Bumped version * Updated README.md
1 parent 4da7df9 commit 0785837

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ More details on the Python SDK can be found in our [**documentation**](https://d
88

99
Install `rudder-sdk-python` using `pip`:
1010

11-
```
11+
```bash
1212
pip install rudder-sdk-python
1313
```
1414

1515
## Initializing the RudderStack Client
1616

17-
```
17+
```python
1818
import rudder_analytics
1919

2020
rudder_analytics.write_key = <SOURCE_WRITE_KEY>
@@ -25,7 +25,7 @@ rudder_analytics.data_plane_url = <DATA_PLANE_URL>
2525

2626
Once the RudderStack client is initialized, you can use it to send your customer events. A sample `track` call is shown below:
2727

28-
```
28+
```python
2929
rudder_analytics.track('developer_user_id', 'Simple Track Event', {
3030
'key1': 'val1'
3131
})
@@ -35,10 +35,10 @@ For more information on the supported calls, refer to the [**documentation**](ht
3535

3636
## About RudderStack
3737

38-
[**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.
38+
[**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.
3939

4040
More information on RudderStack can be found [**here**](https://github.com/rudderlabs/rudder-server).
4141

4242
## Contact Us
4343

44-
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.
44+
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.

rudder_analytics/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '1.0.0-beta.2'
1+
VERSION = '1.0.0'

0 commit comments

Comments
 (0)