about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNguyễn Gia Phong <cnx@loang.net>2024-01-10 07:54:35 +0900
committerNguyễn Gia Phong <cnx@loang.net>2024-01-10 07:59:13 +0900
commit453cc4a0751bb5f29d4a8c7b841c345653a89f87 (patch)
tree67f1e684072e55a67a00be46b98fec8cffcb4be9
parent2fe8dbaef058254b9ee6f0b9bfcfaf2e943c8df8 (diff)
downloadfead-453cc4a0751bb5f29d4a8c7b841c345653a89f87.tar.gz
Bump to version 1.0 1.0.0
-rw-r--r--pyproject.toml4
-rwxr-xr-xsrc/fead.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 5b94391..355de4d 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -13,7 +13,7 @@ authors = [ { name = "Nguyễn Gia Phong", email = "cnx@loang.net" },
 maintainers = [ { name = "Nguyễn Gia Phong", email = "~cnx/misc@lists.sr.ht" } ]
 keywords = [ "rss", "atom" ]
 classifiers = [
-    "Development Status :: 4 - Beta",
+    "Development Status :: 5 - Production/Stable",
     "Environment :: Console",
     "Framework :: AsyncIO",
     "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
@@ -21,5 +21,5 @@ classifiers = [
     "Programming Language :: Python",
     "Topic :: Utilities" ]
 dynamic = [ "version" ]
-urls = { git = "https://git.sr.ht/~cnx/fead" }
+urls = { Source = "https://trong.loang.net/~cnx/fead" }
 scripts = { fead = "fead:main" }
diff --git a/src/fead.py b/src/fead.py
index a01616b..e9abd90 100755
--- a/src/fead.py
+++ b/src/fead.py
@@ -16,7 +16,7 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-__version__ = '0.1.3'
+__version__ = '1.0.0'
 
 from argparse import ArgumentParser, FileType, HelpFormatter
 from asyncio import CancelledError, TaskGroup, gather, open_connection, run