Skip to content

Commit

Permalink
bump version 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wchistow committed Sep 25, 2023
1 parent a092747 commit f74a569
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog of the PyStackAPI library

## 0.1.1 (25.09.2023)

### Added:

+ method `__str__` to class `Item` for more pretty result printing.
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ![](logo.png)

Here is PyStackAPI version 0.1.0
Here is PyStackAPI version 0.1.1

## What is PyStackAPI?

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

```shell
pip install git+https://github.com/wchistow/[email protected].0
pip install git+https://github.com/wchistow/[email protected].1
```

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

```text
Total questions in StackOverflow: 23789952
Total questions on StackOverflow: 23789952
```

## Changelog

You can find the changelog for the PyStackAPI library in file [CHANGELOG.md](https://github.com/wchistow/pystackapi/blob/master/CHANGELOG.md).

## Contributing

Want to contribute?

1. fork this repository;
2. do something with code (see [developers' guide](https://github.com/wchistow/pystackapi/blob/master/CONTRIBUTING.md));
3. create pull request.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = 'pystackapi'
version = '0.1.0'
version = '0.1.1'
license = {file = 'LICENSE'}
description = 'PyStackAPI is a modern, 100% typed wrapper for the StackExchange API, written in Python.'
authors = [
Expand Down
2 changes: 1 addition & 1 deletion src/pystackapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .network import Network
from .site import Site

__version__ = '0.1.0'
__version__ = '0.1.1'
__all__ = ('Site', 'Network', 'sites', 'errors', 'item')

0 comments on commit f74a569

Please sign in to comment.