diff --git a/GUIDE.md b/GUIDE.md index 3accae9a..93f4a860 100644 --- a/GUIDE.md +++ b/GUIDE.md @@ -20,7 +20,7 @@ **If you install Shynet, you should strongly consider enabling notifications when new versions are released.** You can do this under the "Watch" tab on GitHub (above). This will ensure that you are notified when new versions are available, some of which may be security updates. (Shynet will never automatically update itself.) -> **When you do update, read the release notes!** These will tell you if you need to make changes to your deployment. (E.g., Shynet 0.13.0 requires additional configuration.) +> **When you do update, read the release notes!** These will tell you if you need to make changes to your deployment. (E.g., Shynet 0.13.1 requires additional configuration.) ## Installation diff --git a/pyproject.toml b/pyproject.toml index 79225047..fd64f071 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shynet" -version = "0.13.0" +version = "0.13.1" description = "Modern, privacy-friendly, and cookie-free web analytics." authors = ["R. Miles McCain "] license = "Apache-2.0" diff --git a/shynet/shynet/settings.py b/shynet/shynet/settings.py index 235bbc40..0794a04c 100644 --- a/shynet/shynet/settings.py +++ b/shynet/shynet/settings.py @@ -23,7 +23,7 @@ load_dotenv() # Increment on new releases -VERSION = "0.13.0" +VERSION = "0.13.1" # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))