Skip to content

Commit f74a569

Browse files
committed
bump version 0.1.1
1 parent a092747 commit f74a569

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Changelog of the PyStackAPI library
2+
3+
## 0.1.1 (25.09.2023)
4+
5+
### Added:
6+
7+
+ method `__str__` to class `Item` for more pretty result printing.

README.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ![](logo.png)
22

3-
Here is PyStackAPI version 0.1.0
3+
Here is PyStackAPI version 0.1.1
44

55
## What is PyStackAPI?
66

@@ -11,7 +11,7 @@ PyStackAPI is a modern, 100% typed wrapper for the StackExchange API, written in
1111
To install PyStackAPI, just enter in the terminal:
1212

1313
```shell
14-
pip install git+https://github.com/wchistow/pystackapi.git@0.1.0
14+
pip install git+https://github.com/wchistow/pystackapi.git@0.1.1
1515
```
1616

1717
## Documentation
@@ -36,5 +36,17 @@ print(f'Total questions on StackOverflow: {info.total_questions}')
3636
Output:
3737

3838
```text
39-
Total questions in StackOverflow: 23789952
39+
Total questions on StackOverflow: 23789952
4040
```
41+
42+
## Changelog
43+
44+
You can find the changelog for the PyStackAPI library in file [CHANGELOG.md](https://github.com/wchistow/pystackapi/blob/master/CHANGELOG.md).
45+
46+
## Contributing
47+
48+
Want to contribute?
49+
50+
1. fork this repository;
51+
2. do something with code (see [developers' guide](https://github.com/wchistow/pystackapi/blob/master/CONTRIBUTING.md));
52+
3. create pull request.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = 'pystackapi'
3-
version = '0.1.0'
3+
version = '0.1.1'
44
license = {file = 'LICENSE'}
55
description = 'PyStackAPI is a modern, 100% typed wrapper for the StackExchange API, written in Python.'
66
authors = [

src/pystackapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from .network import Network
22
from .site import Site
33

4-
__version__ = '0.1.0'
4+
__version__ = '0.1.1'
55
__all__ = ('Site', 'Network', 'sites', 'errors', 'item')

0 commit comments

Comments
 (0)