Skip to content

Commit 47bbe4a

Browse files
committed
chore: bumped version to 0.9.8
1 parent d17cd6c commit 47bbe4a

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [0.9.8]
44

5+
### Changed
6+
7+
- `python-igraph` is now simply `igraph` on PyPI. `python-igraph` will be
8+
updated until Sep 1, 2022 but it will only be a stub package that pulls in
9+
`igraph` as its only dependency, with a matching version number. Please
10+
update your projects to depend on `igraph` instead of `python-igraph` to
11+
keep on receiving updates after Sep 1, 2022.
12+
513
### Fixed
614

715
- `setup.py` no longer uses `distutils`, thanks to

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = '0.9.7'
54+
version = '0.9.8'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '0.9.7'
56+
release = '0.9.8'
5757

5858
# The language for content autogenerated by Sphinx. Refer to documentation
5959
# for a list of supported languages.

src/igraph/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version_info__ = (0, 9, 7)
1+
__version_info__ = (0, 9, 8)
22
__version__ = ".".join("{0}".format(x) for x in __version_info__)

0 commit comments

Comments
 (0)