aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md20
-rwxr-xr-xepy.py2
-rw-r--r--pyproject.toml2
-rw-r--r--setup.py2
4 files changed, 13 insertions, 13 deletions
diff --git a/README.md b/README.md
index ce96376..631aad0 100644
--- a/README.md
+++ b/README.md
@@ -21,15 +21,6 @@ This is just a fork of my own [epr](https://github.com/wustho/epr) with these ex
- [Double Spread](#double-spread)
- Seamless (disabled by default, read [below](#reading-tips-using-epy))
-## Note on `v2021.10.23` and beyond
-
-There happened major refactoring for `epy` in version `v2021.10.23` which harness
-a lot of new stuffs in python standard libraries starting from `python>=3.7`, so
-`epy` won't be compatible with older python version and won't be backward compatible
-with older `epy` configuration and reading states.
-So if you decide to install this version, you will lose
-your reading progress with older `epy`.
-
## Installation
- Via PyPI
@@ -94,7 +85,16 @@ List of supported engines:
## Double Spread
-Double spread is intended to mimic the behaviour of real book, so line scrolling navigation will act as scrolling page and textwidth is not adjustable.
+Double spread is intended to mimic the behaviour of real book,
+so line scrolling navigation will act as scrolling page and textwidth is not adjustable.
+
+## Changelog
+
+- `v2021.10.23`: Major refactoring which harness a lot of new stuff in `python>=3.7`
+ and `epy` won't be backward compatible with older python version and older configuration.
+
+- `v2022.1.8`: Change in configuration and reading states schema that is not backward compatible.
+ So if error is encountered, deleting the configuration and states file might fix the issue.
## Tip Jar
diff --git a/epy.py b/epy.py
index 9f3f99d..a6eaf58 100755
--- a/epy.py
+++ b/epy.py
@@ -15,7 +15,7 @@ Options:
"""
-__version__ = "2022.1.2"
+__version__ = "2022.1.8"
__license__ = "GPL-3.0"
__author__ = "Benawi Adha"
__email__ = "benawiadha@gmail.com"
diff --git a/pyproject.toml b/pyproject.toml
index 76b0392..a800987 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "epy-reader"
-version = "2022.1.2"
+version = "2022.1.8"
description = "CLI Ebook Reader"
authors = ["Benawi Adha <benawiadha@gmail.com>"]
license = "GPL-3.0"
diff --git a/setup.py b/setup.py
index 51b5543..ce84b06 100644
--- a/setup.py
+++ b/setup.py
@@ -10,7 +10,7 @@ if sys.platform == "win32":
setup(
name="epy-reader",
- version="2022.1.2",
+ version="2022.1.8",
description="Terminal/CLI Ebook (epub, fb2, mobi, azw3) Reader",
long_description=long_description,
long_description_content_type="text/markdown",