Skip to content

Commit fff65d6

Browse files
authored
Merge pull request #3 from logtail/th/release-0.1.3
Release v0.1.3
2 parents 9b4d721 + 18c3717 commit fff65d6

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,15 @@ This repository contains the [Logtail](https://logtail.com) Python library, turn
1313
* Support for structured logging and events.
1414
* Automatically captures useful context.
1515
* Performant, light weight, with a thoughtful design.
16+
17+
---
18+
19+
### Installation
20+
21+
Install the Logtail client library from PyPI as you would with any other package:
22+
23+
```
24+
pip install logtail-python
25+
```
26+
27+
Make sure you install the `logtail-python` package and not a different package with the `logtail` keyword in the package name from a different author.

logtail/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
from .helpers import LogtailContext, DEFAULT_CONTEXT
66
from .formatter import LogtailFormatter
77

8-
__version__ = '0.1.2'
8+
__version__ = '0.1.3'
99

1010
context = DEFAULT_CONTEXT

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup
44

55

6-
VERSION = '0.1.2'
6+
VERSION = '0.1.3'
77
ROOT_DIR = os.path.dirname(__file__)
88

99
REQUIREMENTS = [

0 commit comments

Comments
 (0)