Skip to content

Commit cef3bc0

Browse files
committed
Release 0.1.0
1 parent ce680df commit cef3bc0

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Devintest Python Library
22

3-
[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fdevalog%2Fcompany-python-test)
3+
[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fdevalog%2Fpython-sdk)
44
[![pypi](https://img.shields.io/pypi/v/devin-new-test-package)](https://pypi.python.org/pypi/devin-new-test-package)
55

6-
The Devintest Python library provides convenient access to the Devintest APIs from Python.
6+
Welcome to my API
77

88
## Installation
99

@@ -13,7 +13,7 @@ pip install devin-new-test-package
1313

1414
## Reference
1515

16-
A full reference for this library is available [here](https://github.com/devalog/company-python-test/blob/HEAD/./reference.md).
16+
A full reference for this library is available [here](https://github.com/devalog/python-sdk/blob/HEAD/./reference.md).
1717

1818
## Usage
1919

@@ -155,3 +155,4 @@ a proof of concept, but know that we will not be able to merge it as-is. We sugg
155155
an issue first to discuss with us!
156156

157157
On the other hand, contributions to the README are always very welcome!
158+

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "devin-new-test-package"
33

44
[tool.poetry]
55
name = "devin-new-test-package"
6-
version = "0.0.9"
6+
version = "0.1.0"
77
description = ""
88
readme = "README.md"
99
authors = []
@@ -31,7 +31,7 @@ packages = [
3131
]
3232

3333
[project.urls]
34-
Repository = 'https://github.com/devalog/company-python-test'
34+
Repository = 'https://github.com/devalog/python-sdk'
3535

3636
[tool.poetry.dependencies]
3737
python = "^3.8"

src/devintest/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ def __init__(
2020

2121
def get_headers(self) -> typing.Dict[str, str]:
2222
headers: typing.Dict[str, str] = {
23-
"User-Agent": "devin-new-test-package/0.0.9",
23+
"User-Agent": "devin-new-test-package/0.1.0",
2424
"X-Fern-Language": "Python",
2525
"X-Fern-SDK-Name": "devin-new-test-package",
26-
"X-Fern-SDK-Version": "0.0.9",
26+
"X-Fern-SDK-Version": "0.1.0",
2727
**(self.get_custom_headers() or {}),
2828
}
2929
return headers

0 commit comments

Comments
 (0)