Skip to content

Commit 47d61d5

Browse files
committed
start development of 0.3.0
1 parent 561330d commit 47d61d5

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog of the PyStackAPI library
22

3+
## 0.3.0 (??.??.2024)
4+
5+
*Nothing yet*
6+
37
## 0.2.0 (06.12.2023)
48

59
### Added:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</picture>
66
</h1>
77

8-
Here is PyStackAPI version 0.2.0
8+
Here is PyStackAPI version 0.3.0dev
99

1010
## What is PyStackAPI?
1111

TODO.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# ToDo
22

3+
+ [ ] add class `pystackapi.chat.ChatClient`
34
+ [ ] add more examples to directory `examples/`;
45

56
*when you're done any of these tasks, replace `[ ]` in start of line with this task to `[X]`.*

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.2.0'
3+
version = '0.3.0dev'
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.2.0'
4+
__version__ = '0.3.0dev'
55
__all__ = ('Site', 'Network', 'sites', 'errors', 'item')

0 commit comments

Comments
 (0)