From 2db8fdd617e757c24e31f52bc64712bee8a32749 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Thu, 9 Feb 2023 15:37:08 -0500 Subject: [PATCH] =?UTF-8?q?v0.3.0=20=E2=80=94=20Update=20platformdirs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update `platformdirs` dependency to v3. This is a **breaking** change on macOS, where the default configuration path changes from `~/Library/Preferences/reponews/config.toml` to `~/Library/Application Support/reponews/config.toml`. --- CHANGELOG.md | 4 ++-- LICENSE | 2 +- src/reponews/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e9f2e6..6d92034 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v0.3.0 (in development) ------------------------ +v0.3.0 (2023-02-09) +------------------- - Update `platformdirs` dependency to v3. This is a **breaking** change on macOS, where the default configuration path changes from `~/Library/Preferences/reponews/config.toml` to `~/Library/Application diff --git a/LICENSE b/LICENSE index 4e64b8c..80b7bc1 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2021-2022 John Thorvald Wodder II +Copyright (c) 2021-2023 John Thorvald Wodder II Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/reponews/__init__.py b/src/reponews/__init__.py index 83540b8..7dd124f 100644 --- a/src/reponews/__init__.py +++ b/src/reponews/__init__.py @@ -15,7 +15,7 @@ Visit for more information. """ -__version__ = "0.3.0.dev1" +__version__ = "0.3.0" __author__ = "John Thorvald Wodder II" __author_email__ = "reponews@varonathe.org" __license__ = "MIT"