File tree 3 files changed +7
-3
lines changed
pusher_push_notifications
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
- ## [ Unreleased]
7
+ ## [ 2.0.2] - 2024-01-06
8
+ ### Fixed
9
+ - Fix documentation links in docstrings by @amureki
10
+ ### Added
11
+ - Share session between requests by @allburov in #31
8
12
9
13
## [ 2.0.1] - 2020-02-02
10
14
### Fixed
Original file line number Diff line number Diff line change 13
13
import six
14
14
from six .moves import urllib
15
15
16
- SDK_VERSION = '2.0.1 '
16
+ SDK_VERSION = '2.0.2 '
17
17
18
18
INTEREST_MAX_LENGTH = 164
19
19
INTEREST_REGEX = re .compile ('^(_|-|=|@|,|\\ .|;|[A-Z]|[a-z]|[0-9])*$' )
Original file line number Diff line number Diff line change 2
2
from codecs import open
3
3
from os import path
4
4
5
- __version__ = '2.0.1 '
5
+ __version__ = '2.0.2 '
6
6
7
7
here = path .abspath (path .dirname (__file__ ))
8
8
You can’t perform that action at this time.
0 commit comments